Update ExtractorApi.kt

This commit is contained in:
Arjix 2021-07-23 14:59:41 +03:00 committed by GitHub
parent 61f8068830
commit d3a0ef2c34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@ package com.lagradost.cloudstream3.utils
import com.lagradost.cloudstream3.utils.extractors.MixDrop
import com.lagradost.cloudstream3.utils.extractors.Mp4Upload
import com.lagradost.cloudstream3.utils.extractors.Shiro
import com.lagradost.cloudstream3.utils.extractors.WcoStream
import com.lagradost.cloudstream3.utils.extractors.StreamTape
import com.lagradost.cloudstream3.utils.extractors.XStreamCdn
@ -54,6 +55,7 @@ fun getAndUnpack(string: String): String? {
val extractorApis: Array<ExtractorApi> = arrayOf(
//AllProvider(),
Shiro(),
WcoStream(),
Mp4Upload(),
StreamTape(),
MixDrop(),
@ -85,4 +87,4 @@ abstract class ExtractorApi {
open fun getExtractorUrl(id: String): String {
return id
}
}
}