Skip to content

Commit

Permalink
Fix typo. (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
nielserik authored Nov 21, 2024
1 parent 89111bf commit 3fcd19c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class ConfigurationsClient {
LogManager.getLogger(ConfigurationsClient.class);

public static Future<String> getStringValue(RoutingContext routingContext, String moduleName, String configName) {
String query = "module==\"" +moduleName+ "\" and configName==\"" +configName+"\" and enabled=true\"";
String query = "module==\"" +moduleName+ "\" and configName==\"" +configName+"\" and enabled=true";
return Folio.okapiClient(routingContext).get(CONFIGURATIONS_PATH +
"?query=" + URLEncoder.encode(query, StandardCharsets.UTF_8))
.map(response ->
Expand Down

0 comments on commit 3fcd19c

Please sign in to comment.