Skip to content

Commit

Permalink
Fixing fail assert.
Browse files Browse the repository at this point in the history
  • Loading branch information
makarid committed Mar 9, 2021
1 parent 474252d commit 443236d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public String digestParams(RestInvocation restInvocation) {
+ restInvocation.getHttpMethod().toUpperCase()
+ restInvocation.getPath();

if(restInvocation.getQueryString() != null){
if(!restInvocation.getQueryString().isEmpty()){
message += "?"+restInvocation.getQueryString();
}

Expand Down

0 comments on commit 443236d

Please sign in to comment.