From 9a1d37166a1db829949c004326d9eb31efe35f62 Mon Sep 17 00:00:00 2001 From: Draken <131387159+dragonx943@users.noreply.github.com> Date: Tue, 18 Feb 2025 13:04:23 +0700 Subject: [PATCH] [CManga] Small fixes [CManga] Fix "Nothing found" bug #1477 --- .../kotlin/org/koitharu/kotatsu/parsers/site/vi/CMangaParser.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/CMangaParser.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/CMangaParser.kt index ec8c3156..b8c875b6 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/CMangaParser.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/CMangaParser.kt @@ -125,7 +125,7 @@ internal class CMangaParser(context: MangaLoaderContext) : else -> throw IllegalArgumentException("Order not supported ${order.name}") }, ) - .addQueryParameter("tag", if (filter.tags.isEmpty()) "all" else filter.tags.first().key) + .addQueryParameter("tag", if (filter.tags.isEmpty()) "" else filter.tags.first().key) .addQueryParameter("limit", PAGE_SIZE.toString()) .addQueryParameter("page", page.toString()) .build()