fixed UniqueStream

This commit is contained in:
hexated 2022-11-19 12:03:37 +07:00
parent 1cbdfc282d
commit 78a9893648
1 changed files with 1 additions and 1 deletions

View File

@ -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")