mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
updated again
This commit is contained in:
parent
7352d2a1c6
commit
eb9b671a6e
1 changed files with 3 additions and 6 deletions
|
@ -35,7 +35,8 @@ open class StreamoUpload : ExtractorApi() {
|
||||||
|
|
||||||
while (fileMatcher.find()) {
|
while (fileMatcher.find()) {
|
||||||
val fileUrl = fileMatcher.group(1)
|
val fileUrl = fileMatcher.group(1)
|
||||||
sources.add(ExtractorLink(fileUrl))
|
val extractorLink = ExtractorLink(fileUrl, "", "", "") // Add appropriate values for quality, referer, and name
|
||||||
|
sources.add(extractorLink)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -43,8 +44,4 @@ open class StreamoUpload : ExtractorApi() {
|
||||||
|
|
||||||
return sources
|
return sources
|
||||||
}
|
}
|
||||||
|
}
|
||||||
private data class File(
|
|
||||||
@JsonProperty("file") val file: String,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue