egydead fix

This commit is contained in:
Zaw 2023-01-04 01:17:28 +03:00
parent 8506f34356
commit 06f504febf
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
version = 1
version = 2
cloudstream {
description = "Some LinkBox links are broken idk why"

View File

@ -56,7 +56,7 @@ class EgyDead : MainAPI() {
override suspend fun search(query: String): List<SearchResponse> {
val doc = app.get("$mainUrl/?s=$query").document
return doc.select("li.movieItem").mapNotNull {
if(it.select("a").attr("href").contains("/episode/|/season/".toRegex())) return@mapNotNull null
if(it.select("a").attr("href").contains("/episode/")) return@mapNotNull null
it.toSearchResponse()
}
}
@ -64,7 +64,7 @@ class EgyDead : MainAPI() {
override suspend fun load(url: String): LoadResponse {
val doc = app.get(url).document
val title = doc.select("div.singleTitle em").text().cleanTitle()
val isMovie = !url.contains("/serie/")
val isMovie = !url.contains("/serie/|/season/".toRegex())
val posterUrl = doc.select("div.single-thumbnail > img").attr("src")
val rating = doc.select("a.IMDBRating em").text().getIntFromText()