3
3
Fork 1
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:
LagradOst 2023-09-09 23:53:35 +02:00
parent b6e99d7358
commit 85c4c74222

View file

@ -378,6 +378,9 @@ open class ExtractorLink constructor(
open val extractorData: String? = null,
open val type: ExtractorLinkType,
) : VideoDownloadManager.IDownloadableMinimum {
val isM3u8 : Boolean get() = type == ExtractorLinkType.M3U8
val isDash : Boolean get() = type == ExtractorLinkType.DASH
constructor(
source: String,
name: String,