CosmicScansID: Fix page selector (#6063)

Fix page selector
This commit is contained in:
Chopper 2024-11-16 03:21:31 -03:00 committed by GitHub
parent 2d9b33f0b0
commit 4cf73a54fe
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 = '.CosmicScansID'
themePkg = 'mangathemesia'
baseUrl = 'https://cosmic345.co'
overrideVersionCode = 6
overrideVersionCode = 7
}
apply from: "$rootDir/common.gradle"

View File

@ -42,5 +42,5 @@ class CosmicScansID : MangaThemesia(
override fun Elements.imgAttr(): String = this.first()?.imgAttr() ?: ""
// pages
override val pageSelector = "div#readerarea img:not(noscript img)"
override val pageSelector = "div#readerarea img:not(noscript img):not([alt=''])"
}