This commit is contained in:
KillerDogeEmpire 2022-10-23 14:38:16 -07:00
parent f61cdc0cf7
commit 160747e1ac
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ class NineAnimeProvider : MainAPI() {
encrypt(
cipher(mainKey, encode(text)),
nineAnimeKey
)//.replace("""=+$""".toRegex(), "")
)//.replace("""=+$""".toRegex(), "")
)
}
@ -232,7 +232,7 @@ class NineAnimeProvider : MainAPI() {
val episodeListUrl = "$mainUrl/ajax/episode/list/$id?vrf=$vrf"
val body =
app.get(episodeListUrl).parsedSafe<Response>()?.html
?: throw ErrorLoadingException("Could not parse json with cipherKey=$cipherKey id=$id url=\n$episodeListUrl")
?: throw ErrorLoadingException("Could not parse json with cipherKey=$cipherKey id=$id url=\n$episodeListUrl")
val subEpisodes = ArrayList<Episode>()
val dubEpisodes = ArrayList<Episode>()