Update VidStack.kt (#1611)

Making them Public
This commit is contained in:
Phisher98
2025-03-16 17:21:38 +05:30
committed by GitHub
parent a03cc93453
commit 79c7e0312c

View File

@ -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()
}
}
}