Toonily: fix page selector (#3138)

Restored back to default Madara behavior - this will make it so the
"Chapters have been replaced for better quality." banner isn't read as
an image.
This commit is contained in:
Vetle Ledaal 2024-05-20 10:51:25 +00:00 committed by GitHub
parent fdd226aaf2
commit 08f4f9a183
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -3,7 +3,7 @@ ext {
extClass = '.Toonily'
themePkg = 'madara'
baseUrl = 'https://toonily.com'
overrideVersionCode = 11
overrideVersionCode = 12
isNsfw = true
}

View File

@ -67,8 +67,6 @@ class Toonily : Madara(
override fun searchMangaSelector() = "div.page-item-detail.manga"
override val pageListParseSelector = "div.reading-content div"
override fun parseChapterDate(date: String?): Long {
val formattedDate = if (date?.contains("UP") == true) "today" else date
return super.parseChapterDate(formattedDate)