mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
Fixed log
This commit is contained in:
parent
e86c926c30
commit
8be8e54746
1 changed files with 2 additions and 5 deletions
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
package com.lagradost.cloudstream3.extractors
|
package com.lagradost.cloudstream3.extractors
|
||||||
|
|
||||||
import android.util.Log
|
|
||||||
import com.lagradost.cloudstream3.*
|
import com.lagradost.cloudstream3.*
|
||||||
import com.lagradost.cloudstream3.utils.*
|
import com.lagradost.cloudstream3.utils.*
|
||||||
import com.fasterxml.jackson.annotation.JsonProperty
|
import com.fasterxml.jackson.annotation.JsonProperty
|
||||||
|
@ -28,15 +27,13 @@ open class Sobreatsesuyp : ExtractorApi() {
|
||||||
file = mapItem["file"] as? String
|
file = mapItem["file"] as? String
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
Log.d("Kekik_${this.name}", "postJson » ${postJson}")
|
|
||||||
|
|
||||||
for (item in postJson) {
|
for (item in postJson) {
|
||||||
if (item.file == null || item.title == null) continue
|
if (item.file == null || item.title == null) continue
|
||||||
|
|
||||||
val fileUrl = "${mainUrl}/playlist/${item.file.substring(1)}.txt"
|
val videoData = app.post("${mainUrl}/playlist/${item.file.substring(1)}.txt", referer = extRef).text
|
||||||
val videoData = app.post(fileUrl, referer = extRef).text
|
|
||||||
|
|
||||||
callback.invoke(
|
callback.invoke(
|
||||||
ExtractorLink(
|
ExtractorLink(
|
||||||
source = this.name,
|
source = this.name,
|
||||||
name = "${this.name} - ${item.title}",
|
name = "${this.name} - ${item.title}",
|
||||||
|
|
Loading…
Reference in a new issue