Skip to content

Commit 72bd083

Browse files
committed
moflix: add moflix link extractor
1 parent 4ca1897 commit 72bd083

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

Moflix/src/main/kotlin/com/bnyro/MoflixExtractors.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package com.bnyro
22

3+
import com.lagradost.cloudstream3.extractors.ByseSX
34
import com.lagradost.cloudstream3.extractors.VidHidePro
45
import com.lagradost.cloudstream3.extractors.VidStack
56
import com.lagradost.cloudstream3.extractors.Vidguardto
@@ -22,4 +23,9 @@ class MoflixRpmplay : VidStack() {
2223
open class MoflixClick : VidHidePro() {
2324
override val name = "MoflixClick"
2425
override val mainUrl = "https://moflix-stream.click"
26+
}
27+
28+
open class MoflixLink : ByseSX() {
29+
override val name = "MoflixLink"
30+
override val mainUrl = "https://moflix-stream.link"
2531
}

Moflix/src/main/kotlin/com/bnyro/MoflixPlugin.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class MoflixPlugin: Plugin() {
1515
registerExtractorAPI(MoflixUpns())
1616
registerExtractorAPI(MoflixRpmplay())
1717
registerExtractorAPI(MoflixDay())
18+
registerExtractorAPI(MoflixLink())
1819
registerExtractorAPI(DoodstreamCom())
1920
}
2021
}

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ subprojects {
7272
val implementation by configurations
7373

7474
// Stubs for all cloudstream classes
75-
cloudstream("com.lagradost:cloudstream3:pre-release")
75+
cloudstream("com.lagradost:cloudstream3:-SNAPSHOT")
7676

7777
// These dependencies can include any of those which are added by the app,
7878
// but you don't need to include any of them if you don't need them.

0 commit comments

Comments
 (0)