Skip to content

Commit

Permalink
fix(multisrc/aniwatch/kaido) failed to extract video
Browse files Browse the repository at this point in the history
  • Loading branch information
KawsarDev authored Jan 8, 2024
1 parent 40d30ea commit a4bf018
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class MegaCloudExtractor(private val client: OkHttpClient, private val headers:

private fun getIndexPairs(type: String) = runLocked {
INDEX_PAIRS_MAP[type].orEmpty().ifEmpty {
noCacheClient.newCall(GET("https://raw.githubusercontent.com/Claudemirovsky/keys/e$type/key", cache = cacheControl))
noCacheClient.newCall(GET("https://raw.githubusercontent.com/theonlymo/keys/e$type/key", cache = cacheControl))
.execute()
.use { it.body.string() }
.let { json.decodeFromString<List<List<Int>>>(it) }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ class ZoroThemeGenerator : ThemeSourceGenerator {
override val baseVersionCode = 1

override val sources = listOf(
SingleLang("AniWatch", "https://aniwatch.to", "en", isNsfw = false, pkgName = "zoro", overrideVersionCode = 35),
SingleLang("Kaido", "https://kaido.to", "en", isNsfw = false, overrideVersionCode = 2),
SingleLang("AniWatch", "https://aniwatch.to", "en", isNsfw = false, pkgName = "zoro", overrideVersionCode = 36),
SingleLang("Kaido", "https://kaido.to", "en", isNsfw = false, overrideVersionCode = 3),
)

companion object {
Expand Down

0 comments on commit a4bf018

Please sign in to comment.