Skip to content

Commit

Permalink
Merge pull request #10 from reportportal/bugfix/EPMRPP-87411
Browse files Browse the repository at this point in the history
EPMRPP-87411 || All spaces are replaced with %20 if post issue to GitLab
  • Loading branch information
pbortnik authored Nov 8, 2023
2 parents ff3b77d + a3aae28 commit 8e42187
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,7 @@ private <T> void exchangeRequest(int page, List<T> response, HttpEntity<String>
private String getUrl(String url, Map<String, List<String>> queryParams) {
UriComponentsBuilder uriComponentsBuilder = UriComponentsBuilder.fromHttpUrl(url);
queryParams.keySet().forEach(key -> uriComponentsBuilder.queryParam(key, queryParams.get(key)));
return uriComponentsBuilder
.encode()
.toUriString();
return uriComponentsBuilder.build(false).toString();

}

Expand Down

0 comments on commit 8e42187

Please sign in to comment.