Skip to content

Commit

Permalink
ups. fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
arturobernalg committed Sep 13, 2024
1 parent c36ddb4 commit 536202e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ private void digestURI(final URI uri, final Charset charset) {
this.pathSegments = parsePath(uri.getRawPath(), charset);
this.pathRootless = uri.getRawPath() == null || !uri.getRawPath().startsWith("/");
this.encodedQuery = uri.getRawQuery();
this.queryParams = parseQuery(uri.getRawQuery(), charset, false);
this.queryParams = parseQuery(uri.getRawQuery(), charset, this.plusAsBlank);
this.encodedFragment = uri.getRawFragment();
this.fragment = uri.getFragment();
this.charset = charset;
Expand Down

0 comments on commit 536202e

Please sign in to comment.