Skip to content

Commit

Permalink
Merge pull request #7178 from VivekVinushanth/vv-fix8.2issue
Browse files Browse the repository at this point in the history
Fix syntax
  • Loading branch information
VivekVinushanth authored Dec 4, 2024
2 parents 084dc6a + 018ee83 commit 24d9f9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
JSONObject cookieValueInJson = new JSONObject();
cookieValueInJson.put("content", content);
String signature = Base64.getEncoder().encodeToString(IdentityUtil.doSignature(content, user.getTenantDomain());
String signature = Base64.getEncoder().encodeToString(IdentityUtil.doSignature(content, user.getTenantDomain()));
cookieValueInJson.put("signature", signature);
String cookieValue = Base64.getEncoder().encodeToString(cookieValueInJson.toString().getBytes());
Expand Down

0 comments on commit 24d9f9e

Please sign in to comment.