ResetScans: Fix chapter list and filter out paywalled chapters (#4845)

fix
This commit is contained in:
bapeey 2024-08-30 06:18:25 -05:00 committed by Draff
parent f6bf98b764
commit 4ce4b79054
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,7 @@ ext {
extClass = '.ResetScans'
themePkg = 'madara'
baseUrl = 'https://reset-scans.co'
overrideVersionCode = 3
overrideVersionCode = 4
isNsfw = false
}

View File

@ -9,7 +9,8 @@ class ResetScans : Madara(
"en",
dateFormat = SimpleDateFormat("MMM dd", Locale("en")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
override val chapterUrlSelector = ".li__text > a"
override fun chapterListSelector(): String = "li.wp-manga-chapter.free-chap"
}