Skip to content

Commit

Permalink
condition switched
Browse files Browse the repository at this point in the history
Signed-off-by: David Kral <david.k.kral@oracle.com>
  • Loading branch information
Verdent committed Mar 9, 2023
1 parent ca015b5 commit f4f3ab8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ String origUri(ProviderRequest providerRequest) {
URI targetUri = providerRequest.env().targetUri();
String query = targetUri.getQuery();
String path = targetUri.getPath();
if ((null == query) || query.isEmpty()) {
if (query == null || query.isEmpty()) {
return path;
} else {
return path + "?" + query;
Expand Down

0 comments on commit f4f3ab8

Please sign in to comment.