Nartag: Fix filter ()

This commit is contained in:
bapeey 2024-01-10 01:28:13 -05:00 committed by Draff
parent cbf9410e48
commit c1079bfb43
2 changed files with 2 additions and 2 deletions
src/es/nartag
build.gradle
src/eu/kanade/tachiyomi/extension/es/nartag

@ -5,7 +5,7 @@ ext {
extName = 'Traducciones Amistosas'
pkgNameSuffix = 'es.nartag'
extClass = '.Nartag'
extVersionCode = 1
extVersionCode = 2
isNsfw = true
}

@ -88,7 +88,7 @@ class Nartag : ParsedHttpSource() {
}
}
if (includeArray.isNotEmpty()) {
url.addQueryParameter("category", includeArray.joinToString(","))
url.addQueryParameter("categories", includeArray.joinToString(","))
}
if (excludeArray.isNotEmpty()) {
url.addQueryParameter("excategories", excludeArray.joinToString(","))