mirror of
https://github.com/recloudstream/cloudstream-extensions-multilingual.git
synced 2024-08-15 03:15:14 +00:00
remove parentheses
This commit is contained in:
parent
a80bb49354
commit
0401a5a877
1 changed files with 2 additions and 2 deletions
|
@ -122,10 +122,10 @@ class FrenchStreamProvider : MainAPI() {
|
||||||
addTrailer(soup.selectFirst("button#myBtn > a")?.attr("href"))
|
addTrailer(soup.selectFirst("button#myBtn > a")?.attr("href"))
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if ("<a" in (listEpisode[1]).toString()) { // check if VF is empty
|
if ("<a" in listEpisode[1].toString()) { // check if VF is empty
|
||||||
subEpisodes = listEpisode[1].takeEpisode(url) // return vostfr
|
subEpisodes = listEpisode[1].takeEpisode(url) // return vostfr
|
||||||
}
|
}
|
||||||
if ("<a" in (listEpisode[0]).toString()) {
|
if ("<a" in listEpisode[0].toString()) {
|
||||||
dubEpisodes = listEpisode[0].takeEpisode(url)// return vf
|
dubEpisodes = listEpisode[0].takeEpisode(url)// return vf
|
||||||
}
|
}
|
||||||
val yearRegex = Regex("""Titre .* \/ (\d*)""")
|
val yearRegex = Regex("""Titre .* \/ (\d*)""")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue