mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
fixed shitty external extractor code
This commit is contained in:
parent
b6e99d7358
commit
85c4c74222
1 changed files with 3 additions and 0 deletions
|
@ -378,6 +378,9 @@ open class ExtractorLink constructor(
|
||||||
open val extractorData: String? = null,
|
open val extractorData: String? = null,
|
||||||
open val type: ExtractorLinkType,
|
open val type: ExtractorLinkType,
|
||||||
) : VideoDownloadManager.IDownloadableMinimum {
|
) : VideoDownloadManager.IDownloadableMinimum {
|
||||||
|
val isM3u8 : Boolean get() = type == ExtractorLinkType.M3U8
|
||||||
|
val isDash : Boolean get() = type == ExtractorLinkType.DASH
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
source: String,
|
source: String,
|
||||||
name: String,
|
name: String,
|
||||||
|
|
Loading…
Reference in a new issue