Readcomiconline: fixed small issue to the new filter (#19315)

Readcomiconline: Fixed issue that only one page shows up
This commit is contained in:
Ota 2023-12-21 21:31:51 +09:00 committed by GitHub
parent 24858af063
commit 472ed1a1f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'ReadComicOnline'
pkgNameSuffix = 'en.readcomiconline'
extClass = '.Readcomiconline'
extVersionCode = 17
extVersionCode = 18
}
dependencies {

View File

@ -132,6 +132,7 @@ class Readcomiconline : ConfigurableSource, ParsedHttpSource() {
}
}
addPathSegment((if (filters.isEmpty()) getFilterList() else filters).filterIsInstance<SortFilter>().first().selected.toString())
addQueryParameter("page", page.toString())
}.build()
return GET(url, headers)
} else {