Fix URL encoding of search queries

This commit is contained in:
grimsi
2025-06-13 18:53:30 +02:00
parent da978f1277
commit c74a7e9bf1
4 changed files with 58 additions and 38 deletions
+4 -4
View File
@@ -9,16 +9,16 @@ dependencies {
ksp("care.better.pf4j:pf4j-kotlin-symbol-processing:${rootProject.extra["pf4jKspVersion"]}")
implementation("io.ktor:ktor-client-core:$ktor_version") {
exclude(group = "org.slf4j", module = "slf4j-api")
exclude(group = "org.slf4j")
}
implementation("io.ktor:ktor-client-cio:$ktor_version") {
exclude(group = "org.slf4j", module = "slf4j-api")
exclude(group = "org.slf4j")
}
implementation("io.ktor:ktor-client-content-negotiation:$ktor_version") {
exclude(group = "org.slf4j", module = "slf4j-api")
exclude(group = "org.slf4j")
}
implementation("io.ktor:ktor-serialization-kotlinx-json:$ktor_version") {
exclude(group = "org.slf4j", module = "slf4j-api")
exclude(group = "org.slf4j")
}
implementation("me.xdrop:fuzzywuzzy:1.4.0")