diff --git a/library/src/commonMain/kotlin/com/lagradost/cloudstream3/extractors/VidStack.kt b/library/src/commonMain/kotlin/com/lagradost/cloudstream3/extractors/VidStack.kt index 56d373525..e19d665bb 100644 --- a/library/src/commonMain/kotlin/com/lagradost/cloudstream3/extractors/VidStack.kt +++ b/library/src/commonMain/kotlin/com/lagradost/cloudstream3/extractors/VidStack.kt @@ -8,7 +8,7 @@ import javax.crypto.Cipher import javax.crypto.spec.IvParameterSpec import javax.crypto.spec.SecretKeySpec -class VidStack : ExtractorApi() { +open class VidStack : ExtractorApi() { override var name = "Vidstack" override var mainUrl = "https://vidstack.io" override val requiresReferer = true @@ -49,4 +49,4 @@ object AesHelper { check(length % 2 == 0) { "Hex string must have an even length" } return chunked(2).map { it.toInt(16).toByte() }.toByteArray() } -} \ No newline at end of file +}