mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
bump
This commit is contained in:
parent
7f23d6e4bf
commit
852796cc15
3 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
import org.jetbrains.kotlin.konan.properties.Properties
|
||||
|
||||
// use an integer for version numbers
|
||||
version = 214
|
||||
version = 215
|
||||
|
||||
android {
|
||||
defaultConfig {
|
||||
|
|
|
@ -12,7 +12,6 @@ import com.lagradost.cloudstream3.app
|
|||
import com.lagradost.cloudstream3.base64Decode
|
||||
import com.lagradost.cloudstream3.extractors.Jeniusplay
|
||||
import com.lagradost.cloudstream3.extractors.PixelDrain
|
||||
import com.lagradost.cloudstream3.extractors.Vidplay
|
||||
import com.lagradost.cloudstream3.utils.*
|
||||
import java.math.BigInteger
|
||||
import java.security.MessageDigest
|
||||
|
|
|
@ -764,8 +764,9 @@ object SoraExtractor : SoraStream() {
|
|||
val mediaId = app.get(url).document.selectFirst("ul.episodes li a")?.attr("data-id")
|
||||
?: return
|
||||
|
||||
app.get("$vidsrctoAPI/ajax/embed/episode/$mediaId/sources")
|
||||
.parsedSafe<VidsrctoSources>()?.result?.apmap {
|
||||
app.get("$vidsrctoAPI/ajax/embed/episode/$mediaId/sources", headers = mapOf(
|
||||
"X-Requested-With" to "XMLHttpRequest"
|
||||
)).parsedSafe<VidsrctoSources>()?.result?.apmap {
|
||||
val encUrl = app.get("$vidsrctoAPI/ajax/embed/source/${it.id}")
|
||||
.parsedSafe<VidsrctoResponse>()?.result?.url
|
||||
loadExtractor(
|
||||
|
|
Loading…
Reference in a new issue