mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
fix
This commit is contained in:
parent
da8defa795
commit
d039139237
2 changed files with 2 additions and 14 deletions
|
@ -1750,8 +1750,9 @@ object SoraExtractor : SoraStream() {
|
|||
invokeSmashyFfix(it.second, it.first, url, subtitleCallback, callback)
|
||||
}
|
||||
"Player SU" -> {
|
||||
invokeSmashySu(it.second, it.first, url, subtitleCallback, callback)
|
||||
invokeSmashySu(it.second, it.first, url, callback)
|
||||
}
|
||||
|
||||
else -> return@apmap
|
||||
}
|
||||
}
|
||||
|
|
|
@ -425,7 +425,6 @@ suspend fun invokeSmashySu(
|
|||
name: String,
|
||||
url: String,
|
||||
ref: String,
|
||||
subtitleCallback: (SubtitleFile) -> Unit,
|
||||
callback: (ExtractorLink) -> Unit,
|
||||
) {
|
||||
val json = app.get(url, referer = ref, headers = mapOf("X-Requested-With" to "XMLHttpRequest"))
|
||||
|
@ -444,18 +443,6 @@ suspend fun invokeSmashySu(
|
|||
)
|
||||
)
|
||||
}
|
||||
|
||||
json?.subtitleUrls?.removeSuffix(",")?.split(",")?.forEach { sub ->
|
||||
val lang = "\\[(.*)]".toRegex().find(sub)?.groupValues?.get(1)
|
||||
val subUrl = sub.replace("[$lang]", "").trim()
|
||||
subtitleCallback.invoke(
|
||||
SubtitleFile(
|
||||
lang ?: return@forEach,
|
||||
subUrl
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
suspend fun getDumpIdAndType(title: String?, year: Int?, season: Int?): Pair<String?, Int?> {
|
||||
|
|
Loading…
Reference in a new issue