Update SoraJioTVExtractor.kt

This commit is contained in:
Saksham Shekher 2022-12-13 19:55:23 +05:30 committed by GitHub
parent 34e7daaa6a
commit 6cb1ba0541
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 1 deletions

View File

@ -126,6 +126,22 @@ object SoraJioTVExtractor: SoraJioTVProvider() {
)
)
}
fun invokeBF(
id: String? = null,
callback: (ExtractorLink) -> Unit
){
val link = "$BFJioTV/autoq.php?c=$id"
callback.invoke(
ExtractorLink(
this.name,
"BFJioTV",
link,
referer = "",
quality = Qualities.Unknown.value,
isM3u8 = true,
)
)
}
fun invokeRPK(
id: String? = null,
callback: (ExtractorLink) -> Unit
@ -142,4 +158,4 @@ object SoraJioTVExtractor: SoraJioTVProvider() {
)
)
}
}
}