Extractor: source fix

This commit is contained in:
keyiflerolsun 2023-12-28 22:36:04 +03:00
parent 57663a85b2
commit a72acbeac7
No known key found for this signature in database
GPG key ID: 3034301CA5C50DA8
3 changed files with 5 additions and 5 deletions

View file

@ -30,8 +30,8 @@ open class MailRu : ExtractorApi() {
callback.invoke( callback.invoke(
ExtractorLink( ExtractorLink(
source = "${this.name}", source = this.name,
name = "${this.name}", name = this.name,
url = video_url, url = video_url,
referer = url, referer = url,
headers = mapOf("Cookie" to "video_key=${video_key}"), headers = mapOf("Cookie" to "video_key=${video_key}"),

View file

@ -42,8 +42,8 @@ open class Odnoklassniki : ExtractorApi() {
callback.invoke( callback.invoke(
ExtractorLink( ExtractorLink(
source = "${this.name}", source = this.name,
name = "${this.name}", name = this.name,
url = video_url, url = video_url,
referer = url, referer = url,
quality = getQualityFromName(quality), quality = getQualityFromName(quality),

View file

@ -55,7 +55,7 @@ open class TRsTX : ExtractorApi() {
callback.invoke( callback.invoke(
ExtractorLink( ExtractorLink(
source = "${this.name} - ${title}", source = this.name,
name = "${this.name} - ${title}", name = "${this.name} - ${title}",
url = m3u_link, url = m3u_link,
referer = ext_ref, referer = ext_ref,