mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
fixed Quality SoraExtractor
This commit is contained in:
parent
09c6347589
commit
dfe775f668
1 changed files with 15 additions and 2 deletions
|
@ -95,7 +95,20 @@ object SoraExtractor : SoraStream() {
|
||||||
"$vidSrcAPI/embed/$id/${season}-${episode}"
|
"$vidSrcAPI/embed/$id/${season}-${episode}"
|
||||||
}
|
}
|
||||||
|
|
||||||
loadExtractor(url, null, subtitleCallback, callback)
|
loadExtractor(url, null, subtitleCallback) { link ->
|
||||||
|
callback.invoke(
|
||||||
|
ExtractorLink(
|
||||||
|
link.name,
|
||||||
|
link.name,
|
||||||
|
link.url,
|
||||||
|
link.referer,
|
||||||
|
Qualities.P1080.value,
|
||||||
|
link.isM3u8,
|
||||||
|
link.headers,
|
||||||
|
link.extractorData
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun invokeOlgply(
|
suspend fun invokeOlgply(
|
||||||
|
@ -250,7 +263,7 @@ suspend fun loadLinksWithWebView(
|
||||||
"Olgply",
|
"Olgply",
|
||||||
foundVideo.url.toString(),
|
foundVideo.url.toString(),
|
||||||
"",
|
"",
|
||||||
Qualities.Unknown.value,
|
Qualities.P1080.value,
|
||||||
true
|
true
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue