fixed shitty external extractor code

This commit is contained in:
LagradOst 2023-09-09 23:53:35 +02:00
parent b6e99d7358
commit 85c4c74222
1 changed files with 3 additions and 0 deletions

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,