mgo: fix covers not showing (#14986)

This commit is contained in:
beerpsi 2023-01-17 06:56:29 +07:00 committed by GitHub
parent d56b1fe795
commit 05154fc045
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Mangago'
pkgNameSuffix = 'en.mangago'
extClass = '.Mangago'
extVersionCode = 8
extVersionCode = 9
isNsfw = true
}

View File

@ -79,7 +79,7 @@ class Mangago : ParsedHttpSource() {
title = linkElement.attr("title")
val thumbnailElem = linkElement.selectFirst("img")
thumbnail_url = thumbnailElem.attr("abs:src").ifBlank { thumbnailElem.attr("abs:data-src") }
thumbnail_url = thumbnailElem.attr("abs:data-src").ifBlank { thumbnailElem.attr("abs:src") }
}
override fun popularMangaRequest(page: Int): Request =