From 058af4980718c10b4857516e8d2745ab95d68cdf Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Thu, 28 Aug 2025 17:41:44 +0800 Subject: [PATCH] fix(kobo): fail to create proxy url Closes: #2063 --- .../kotlin/org/gotson/komga/infrastructure/kobo/KoboProxy.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/komga/src/main/kotlin/org/gotson/komga/infrastructure/kobo/KoboProxy.kt b/komga/src/main/kotlin/org/gotson/komga/infrastructure/kobo/KoboProxy.kt index 8ccab139..850bc464 100644 --- a/komga/src/main/kotlin/org/gotson/komga/infrastructure/kobo/KoboProxy.kt +++ b/komga/src/main/kotlin/org/gotson/komga/infrastructure/kobo/KoboProxy.kt @@ -88,7 +88,7 @@ class KoboProxy( .uri { uriBuilder -> uriBuilder .path(path) - .queryParams(LinkedMultiValueMap(request.parameterMap.mapValues { it.value.toList() })) + .query(request.queryString) .build() .also { logger.debug { "Proxy URL: $it" } } }.headers { headersOut ->