Skip to content

Commit

Permalink
Update VfFilmProvider.kt (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
amorabda authored Nov 7, 2021
1 parent d338639 commit de3d3ce
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import org.jsoup.Jsoup
// referer = https://vf-film.org, USERAGENT ALSO REQUIRED
class VfFilmProvider : MainAPI() {
override val mainUrl: String
get() = "https://vf-film.org"
get() = "https://vf-film.me"
override val name: String
get() = "vf-film.org"
get() = "vf-film.me"

override val lang: String = "fr"

Expand Down Expand Up @@ -121,7 +121,7 @@ class VfFilmProvider : MainAPI() {
val i = numberPlayer.toString()
val trid = Regex("iframe .*trid=(.*?)&").find(document.html())?.groupValues?.get(1)

val data = getDirect("https://vf-film.org/?trembed=$i&trid=$trid&trtype=1")
val data = getDirect("https://vf-film.me/?trembed=$i&trid=$trid&trtype=1")


return MovieLoadResponse(
Expand Down

0 comments on commit de3d3ce

Please sign in to comment.