Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
janbartel committed Jun 14, 2024
1 parent 33c2453 commit 04e11db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public boolean handle(Request request, Response response, Callback callback) thr
// Gets the request URL.
// Replaces:
// - servletRequest.getRequestURL();
HttpURI httpURI = HttpURI.build(request.getHttpURI().query(null));
HttpURI httpURI = HttpURI.build(request.getHttpURI()).query(null);
StringBuffer requestURL = new StringBuffer(httpURI.asString());

// Gets the request context.
Expand Down

0 comments on commit 04e11db

Please sign in to comment.