higotv: Fix names in main
This commit is contained in:
parent
c8ef8de606
commit
eeab703558
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
// use an integer for version numbers
|
||||
version = 1
|
||||
version = 2
|
||||
|
||||
dependencies{
|
||||
implementation("com.google.code.gson:gson:2.9.0")
|
||||
|
|
|
@ -71,7 +71,7 @@ class HigoTVProvider : MainAPI() {
|
|||
}
|
||||
|
||||
private fun Element.toSearchResponse(): AnimeSearchResponse {
|
||||
val title = this.select(titleSelector).text().replace("Назва: ", "")
|
||||
val title = this.selectFirst(titleSelector)!!.text().replace("Назва: ", "")
|
||||
// val engTitle = this.selectFirst(engTitleSelector)?.text()?.trim().toString()
|
||||
val href = this.selectFirst(hrefSelector)?.attr("href").toString()
|
||||
val posterUrl = fixUrl(this.select(posterSelector).attr("src"))
|
||||
|
|
Loading…
Reference in a new issue