Update EurostreamingProvider.kt

This commit is contained in:
Cloudburst 2022-11-29 11:11:51 +01:00 committed by GitHub
parent d659cc1f0e
commit 9934b5f209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ class EurostreamingProvider : MainAPI() {
}
private fun Element.toSearchResult(): SearchResponse {
val title = this.selectFirst("a")?.attr("title").toString()
val link = this.selectFirst("a")?.attr("href").toString()
val title = this.selectFirst("a")?.attr("title")
val link = this.selectFirst("a")?.attr("href")
val image = fixUrlNull(mainUrl + this.selectFirst("img")?.attr("src")?.trim())
return newTvSeriesSearchResponse(title, link, TvType.TvSeries){