mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
fixed UniqueStream
This commit is contained in:
parent
1cbdfc282d
commit
78a9893648
1 changed files with 1 additions and 1 deletions
|
@ -523,7 +523,7 @@ object SoraExtractor : SoraStream() {
|
|||
val res = app.get(url)
|
||||
if (!res.isSuccessful) return
|
||||
val document = res.document
|
||||
val type = if (url.contains("/movie/")) "movie" else "tv"
|
||||
val type = if (url.contains("/movies/")) "movie" else "tv"
|
||||
document.select("ul#playeroptionsul > li").apmap { el ->
|
||||
val id = el.attr("data-post")
|
||||
val nume = el.attr("data-nume")
|
||||
|
|
Loading…
Reference in a new issue