Nartag: Fix filter (#49)

This commit is contained in:
bapeey 2024-01-10 01:28:13 -05:00 committed by GitHub
parent 12c70ed62f
commit 4c890d3dc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -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(","))