Webtoon Hatti: update page selector (#3281)

This commit is contained in:
AwkwardPeak7 2024-05-29 09:57:04 +05:00 committed by GitHub
parent 476890da4b
commit b0c93f180f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ ext {
extClass = '.WebtoonHatti'
themePkg = 'madara'
baseUrl = 'https://webtoonhatti.net'
overrideVersionCode = 2
overrideVersionCode = 3
}
apply from: "$rootDir/common.gradle"

View File

@ -15,5 +15,5 @@ class WebtoonHatti : Madara(
// Skip fake image
// OK: <div class="page-break no-gaps">
// NG: <div style="display:none" class="page-break no-gaps">
override val pageListParseSelector = "div.page-break:not([style*=\"display:\"])"
override val pageListParseSelector = "div.page-break:not([style*=display:]):not([style*=visibility:])"
}