[NHentai] Fix favorite count when login (#4581)
Fix favorite count when login
This commit is contained in:
parent
f7a92a1573
commit
2bbdd0a351
|
@ -1,7 +1,7 @@
|
|||
ext {
|
||||
extName = 'NHentai'
|
||||
extClass = '.NHFactory'
|
||||
extVersionCode = 41
|
||||
extVersionCode = 42
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
|
|
|
@ -226,7 +226,7 @@ open class NHentai(
|
|||
.plus("$fullTitle\n")
|
||||
.plus("${document.select("div#info h2").text()}\n\n")
|
||||
.plus("Pages: ${getNumPages(document)}\n")
|
||||
.plus("Favorited by: ${document.select("div#info i.fa-heart + span span").text().removeSurrounding("(", ")")}\n")
|
||||
.plus("Favorited by: ${document.select("div#info i.fa-heart ~ span span").text().removeSurrounding("(", ")")}\n")
|
||||
.plus(getTagDescription(document))
|
||||
genre = getTags(document)
|
||||
update_strategy = UpdateStrategy.ONLY_FETCH_ONCE
|
||||
|
|
Loading…
Reference in New Issue