mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
fix for loadlinks (#798)
This commit is contained in:
parent
62266cedb2
commit
a0f3620ae8
1 changed files with 4 additions and 4 deletions
|
@ -149,7 +149,7 @@ class AllMoviesForYouProvider : MainAPI() {
|
|||
name,
|
||||
season.first,
|
||||
epNum,
|
||||
href,
|
||||
fixUrl(href),
|
||||
fixUrlNull(poster),
|
||||
date
|
||||
)
|
||||
|
@ -175,7 +175,7 @@ class AllMoviesForYouProvider : MainAPI() {
|
|||
title,
|
||||
url,
|
||||
type,
|
||||
url
|
||||
fixUrl(url)
|
||||
) {
|
||||
posterUrl = backgroundPoster
|
||||
this.year = year?.toIntOrNull()
|
||||
|
@ -193,12 +193,12 @@ class AllMoviesForYouProvider : MainAPI() {
|
|||
callback: (ExtractorLink) -> Unit
|
||||
): Boolean {
|
||||
val doc = app.get(data).document
|
||||
val iframe = doc.select("body iframe").map { it.attr("src") }
|
||||
val iframe = doc.select("body iframe").map { fixUrl(it.attr("src")) }
|
||||
iframe.apmap { id ->
|
||||
if (id.contains("trembed")) {
|
||||
val soup = app.get(id).document
|
||||
soup.select("body iframe").map {
|
||||
val link = it.attr("src").replace("streamhub.to/d/","streamhub.to/e/")
|
||||
val link = fixUrl(it.attr("src").replace("streamhub.to/d/","streamhub.to/e/"))
|
||||
loadExtractor(link, data, callback)
|
||||
}
|
||||
} else loadExtractor(id, data, callback)
|
||||
|
|
Loading…
Reference in a new issue