[RU]Nudemoon more precise image filtering (#11644)

* More precise image filtering

* Bump version code from 24 to 25
This commit is contained in:
abubaca4 2025-11-14 20:31:35 +03:00 committed by Draff
parent c0dfbb7c13
commit b30df94837
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'Nude-Moon'
extClass = '.Nudemoon'
extVersionCode = 24
extVersionCode = 25
isNsfw = true
}

View File

@ -248,7 +248,7 @@ class Nudemoon : ParsedHttpSource(), ConfigurableSource {
}
override fun pageListParse(response: Response): List<Page> = mutableListOf<Page>().apply {
response.asJsoup().select("img.border").mapIndexed { index, img ->
response.asJsoup().select("""img.border[title~=.+]""").mapIndexed { index, img ->
add(Page(index, imageUrl = img.attr("abs:data-src")))
}
if (isEmpty() && cookieManager.getCookie(baseUrl).contains("fusion_user").not()) {