We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12fa2c0 commit d4247d8Copy full SHA for d4247d8
modules/openapi-generator/src/main/resources/Java/libraries/vertx/apiImpl.mustache
@@ -112,7 +112,7 @@ public class {{classname}}Impl implements {{classname}} {
112
113
private String encodeParameter(String parameter) {
114
try {
115
- return URLEncoder.encode(parameter, StandardCharsets.UTF_8.name());
+ return URLEncoder.encode(parameter, StandardCharsets.UTF_8.name()).replaceAll("\\+", "%20");
116
} catch (UnsupportedEncodingException e) {
117
return parameter;
118
}
0 commit comments