Skip to content

Commit

Permalink
Merge pull request #7177 from VivekVinushanth/vv-fix-issues
Browse files Browse the repository at this point in the history
Fix syntax
  • Loading branch information
VivekVinushanth authored Dec 4, 2024
2 parents 7deb69b + f5cce4a commit 14b950f
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 14b950f

Please sign in to comment.