mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
Extractor: source fix
This commit is contained in:
parent
57663a85b2
commit
a72acbeac7
3 changed files with 5 additions and 5 deletions
|
@ -30,8 +30,8 @@ open class MailRu : ExtractorApi() {
|
|||
|
||||
callback.invoke(
|
||||
ExtractorLink(
|
||||
source = "${this.name}",
|
||||
name = "${this.name}",
|
||||
source = this.name,
|
||||
name = this.name,
|
||||
url = video_url,
|
||||
referer = url,
|
||||
headers = mapOf("Cookie" to "video_key=${video_key}"),
|
||||
|
|
|
@ -42,8 +42,8 @@ open class Odnoklassniki : ExtractorApi() {
|
|||
|
||||
callback.invoke(
|
||||
ExtractorLink(
|
||||
source = "${this.name}",
|
||||
name = "${this.name}",
|
||||
source = this.name,
|
||||
name = this.name,
|
||||
url = video_url,
|
||||
referer = url,
|
||||
quality = getQualityFromName(quality),
|
||||
|
|
|
@ -55,7 +55,7 @@ open class TRsTX : ExtractorApi() {
|
|||
|
||||
callback.invoke(
|
||||
ExtractorLink(
|
||||
source = "${this.name} - ${title}",
|
||||
source = this.name,
|
||||
name = "${this.name} - ${title}",
|
||||
url = m3u_link,
|
||||
referer = ext_ref,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue