Fix Ninemanga filter

This commit is contained in:
Koitharu
2022-01-06 17:45:34 +02:00
parent 3a02f8090e
commit a2dbec98f9
2 changed files with 3 additions and 3 deletions

View File

@@ -13,8 +13,8 @@ android {
applicationId 'org.koitharu.kotatsu'
minSdkVersion 21
targetSdkVersion 31
versionCode 374
versionName '2.0.2'
versionCode 375
versionName '2.1-b1'
generatedDensities = []
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

View File

@@ -41,7 +41,7 @@ abstract class NineMangaRepository(
append("&page=")
}
!tags.isNullOrEmpty() -> {
append("/search/&category_id=")
append("/search/?category_id=")
for (tag in tags) {
append(tag.key)
append(',')