mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
Disabled Providers (#1316)
* Update providers.json * Update providers.json * switched to kotlinx serialization, failing build due to failure of on primitive types * Reverted to 2embed.to * Update providers.json * Update providers.json * Updated url * Revert "Merge branch 'LagradOst:master' into patch-1" This reverts commit d95b2b46066576ed910d7c5f18775333fb6707ec, reversing changes made to 8c8bd3a510ca08ff49dcb517c174ad9478e563bc. * Update SettingsAccount.kt Revert changes made to SettingsAccount.kt Co-authored-by: LagradOst <11805592+LagradOst@users.noreply.github.com> Co-authored-by: Blatzar <46196380+Blatzar@users.noreply.github.com>
This commit is contained in:
parent
31ee495bc1
commit
a8211f6259
6 changed files with 13 additions and 14 deletions
|
@ -226,8 +226,7 @@ class EgyBestProvider : MainAPI() {
|
|||
link,
|
||||
this.mainUrl,
|
||||
quality!!,
|
||||
true,
|
||||
headers = mapOf("range" to "bytes=0-"),
|
||||
true
|
||||
)
|
||||
)
|
||||
}
|
||||
|
|
|
@ -152,4 +152,4 @@ class HDMovie5 : MainAPI() {
|
|||
loadExtractor(httpsify(link), "$mainUrl/", subtitleCallback, callback)
|
||||
}.contains(true)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ import com.lagradost.cloudstream3.utils.loadExtractor
|
|||
class TwoEmbedProvider : TmdbProvider() {
|
||||
override val apiName = "2Embed"
|
||||
override var name = "2Embed"
|
||||
override var mainUrl = "https://2embed.org"
|
||||
override var mainUrl = "https://www.2embed.to"
|
||||
override val useMetaLoadResponse = true
|
||||
override val instantLinkLoading = false
|
||||
override val supportedTypes = setOf(
|
||||
|
@ -46,10 +46,10 @@ class TwoEmbedProvider : TmdbProvider() {
|
|||
) else listOf(mappedData.tmdbID.toString(), "tmdb")
|
||||
val isMovie = mappedData.episode == null && mappedData.season == null
|
||||
val embedUrl = if (isMovie) {
|
||||
"$mainUrl/embed/movie?$site=$id"
|
||||
"$mainUrl/embed/$site/movie?id=$id"
|
||||
} else {
|
||||
val suffix = "$id&sea=${mappedData.season ?: 1}&epi=${mappedData.episode ?: 1}"
|
||||
"$mainUrl/embed/series?$site=$suffix"
|
||||
val suffix = "$id&s=${mappedData.season ?: 1}&e=${mappedData.episode ?: 1}"
|
||||
"$mainUrl/embed/$site/tv?id=$suffix"
|
||||
}
|
||||
|
||||
val document = app.get(embedUrl).document
|
||||
|
|
|
@ -233,4 +233,4 @@ class SettingsAccount : PreferenceFragmentCompat() {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue