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.
2 parents a81e1b9 + 394cfb6 commit b6979d3Copy full SHA for b6979d3
sdk/src/main/java/com/spectralogic/ds3client/NetworkClientImpl.java
@@ -137,7 +137,7 @@ private HttpRequest buildHttpRequest() throws IOException {
137
}
138
139
private String buildPath() {
140
- String path = this.ds3Request.getPath();
+ String path = UrlEscapers.urlFragmentEscaper().escape(this.ds3Request.getPath());
141
final Map<String, String> queryParams = this.ds3Request.getQueryParams();
142
if (!queryParams.isEmpty()) {
143
path += "?" + NetUtils.buildQueryString(queryParams);
0 commit comments