fixed several providers

This commit is contained in:
hexated 2023-03-04 05:37:14 +07:00
parent 8fbd218574
commit 3f2f8d8000
8 changed files with 45 additions and 36 deletions

View file

@ -1,5 +1,5 @@
// use an integer for version numbers
version = 7
version = 8
cloudstream {

View file

@ -81,6 +81,7 @@ class Hdfilmcehennemi : MainAPI() {
val document = app.get(url).document
val title = document.selectFirst("div.card-header > h1, div.card-header > h2")?.text()
?.removeSuffix("Filminin Bilgileri")?.trim()
?: return null
val poster = fixUrlNull(document.selectFirst("img.img-fluid")?.attr("src"))
val tags = document.select("div.mb-0.lh-lg div:nth-child(5) a").map { it.text() }