mirror of
https://github.com/recloudstream/cloudstream-extensions-multilingual.git
synced 2024-08-15 03:15:14 +00:00
Update PhimmoichillProvider.kt
This commit is contained in:
parent
2cdff514e4
commit
fb1961d465
1 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ class PhimmoichillProvider : MainAPI() {
|
|||
.toIntOrNull()
|
||||
val tvType = if (document.select("div.latest-episode").isNotEmpty()
|
||||
) TvType.TvSeries else TvType.Movie
|
||||
val description = document.select("div#film-content").text().trim()
|
||||
val description = document.select("div#film-content[itemprop=author]").text().trim()
|
||||
val trailer =
|
||||
document.select("div#trailer script").last()?.data()?.substringAfter("file: \"")
|
||||
?.substringBefore("\",")
|
||||
|
@ -100,7 +100,7 @@ class PhimmoichillProvider : MainAPI() {
|
|||
val titleHeader = it.select("p") ?: return@mapNotNull null
|
||||
val recUrl = titleHeader.attr("href") ?: return@mapNotNull null
|
||||
val recTitle = titleHeader.text() ?: return@mapNotNull null
|
||||
val poster = it.select("img").attr("src")
|
||||
val poster = it.select("img").attr("data-src")
|
||||
MovieSearchResponse(
|
||||
recTitle,
|
||||
recUrl,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue