Update Acefile.kt

This commit is contained in:
Manna Huizar 2023-10-25 10:45:05 -05:00 committed by GitHub
parent e4ba852007
commit 4edda53d28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ import com.lagradost.cloudstream3.utils.*
open class Acefile : ExtractorApi() {
override val name = "Acefile"
override val mainUrl = "https://acefile.co"
override val requiresReferer = false
override val requiresReferer = true
override suspend fun getUrl(url: String, referer: String?): List<ExtractorLink> {
val sources = mutableListOf<ExtractorLink>()
@ -36,4 +36,4 @@ open class Acefile : ExtractorApi() {
return sources
}
}
}