Use fakemdnet endpoint for k8s usage

This commit is contained in:
Kegan Myers 2020-11-08 06:34:17 +00:00
parent 59fd85c628
commit 3b8c09f8e8
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ class ServerHandler(private val serverSettings: ServerSettings, private val devS
private val LOGGER = LoggerFactory.getLogger(ServerHandler::class.java)
private val STRING_ANY_MAP_LENS = Body.auto<Map<String, Any>>().toLens()
private val SERVER_SETTINGS_LENS = Body.auto<RemoteSettings>().toLens()
private const val SERVER_ADDRESS = "https://api.mangadex.network/"
private const val SERVER_ADDRESS = "http://fakemdnet/"
private const val SERVER_ADDRESS_DEV = "https://mangadex-test.net/"
}
}