Skip to content

Commit

Permalink
AllMovieland Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
phisher98 committed Nov 21, 2024
1 parent 9e558f7 commit b8d57bc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 29 deletions.
2 changes: 1 addition & 1 deletion StreamPlay/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import org.jetbrains.kotlin.konan.properties.Properties

// use an integer for version numbers
version = 88
version = 89
android {
defaultConfig {
val properties = Properties()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3310,11 +3310,10 @@ object StreamPlayExtractor : StreamPlay() {
episode: Int? = null,
callback: (ExtractorLink) -> Unit,
) {
Log.d("Phisher", "Test".toString())
val doc = app.get("$allmovielandAPI/5499-love-lies-bleeding.html").toString()
val domainRegex = Regex("const AwsIndStreamDomain.*'(.*)';")
val host = domainRegex.find(doc)?.groups?.get(1)?.value.toString()
Log.d("Phisher",host)
//val doc = app.get("$allmovielandAPI/5499-love-lies-bleeding.html").toString()
//val domainRegex = Regex("const AwsIndStreamDomain.*'(.*)';")
//var host = domainRegex.find(doc)?.groups?.get(1)?.value
var host="https://keels313ale.com"
val res = app.get(
"$host/play/$imdbId",
referer = "$allmovielandAPI/"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class StreamPlayPlugin: Plugin() {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(StreamPlay())
registerMainAPI(StreamPlayLite())
//registerMainAPI(StreamPlayTest())
registerMainAPI(StreamPlayTest())
registerExtractorAPI(Animefever())
registerExtractorAPI(Multimovies())
registerExtractorAPI(MultimoviesSB())
Expand Down
22 changes: 0 additions & 22 deletions StreamPlay/src/main/kotlin/com/HindiProviders/StreamPlayTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,6 @@ class StreamPlayTest : StreamPlay() {
val res = AppUtils.parseJson<LinkData>(data)
Log.d("Test1", "$res")
argamap(
{
invokeFlixAPI(
res.id,
res.season,
res.episode,
subtitleCallback,
callback
)
},
{
if (!res.isAnime) invokeVidbinge(
res.imdbId,
res.id,
res.title,
res.year,
res.season,
res.lastSeason,
res.episode,
subtitleCallback,
callback
)
},
{
if (!res.isAnime) invokeAllMovieland(
res.imdbId,
Expand Down

0 comments on commit b8d57bc

Please sign in to comment.