Fix weebcentral filter search showing duplicates (#9955)

* Fix weebcentral filter search showing duplicates

* Add comment for FETCH_LIMIT
This commit is contained in:
thatDudo 2025-08-03 16:27:34 +02:00 committed by Draff
parent 3d44d9423d
commit c2d47af025
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'Weeb Central'
extClass = '.WeebCentral'
extVersionCode = 15
extVersionCode = 16
isNsfw = true
}

View File

@ -246,7 +246,9 @@ class WeebCentral : ParsedHttpSource() {
)
companion object {
const val FETCH_LIMIT = 24
// The related "&limit=" query parameter of the api is currently non functional
// and always returns 32 entries per request
const val FETCH_LIMIT = 32
const val URL_SEARCH_PREFIX = "id:"
}
}