Lua Scans: exclude paid chapters (#5163)

This commit is contained in:
Vetle Ledaal 2024-09-23 15:18:57 +02:00 committed by GitHub
parent 4f4289c957
commit a72df901eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,8 @@ ext {
extClass = '.LuaScans'
themePkg = 'keyoapp'
baseUrl = 'https://luacomic.net'
overrideVersionCode = 29
overrideVersionCode = 30
isNsfw = false
}
apply from: "$rootDir/common.gradle"

View File

@ -9,4 +9,6 @@ class LuaScans : Keyoapp(
) {
// migrated from MangaThemesia to Keyoapp
override val versionId = 2
override fun chapterListSelector() = "${super.chapterListSelector()}:not(:has(img[src^='/assets/images/Coin.svg']))"
}