Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
VivekVinushanth committed Dec 4, 2024
1 parent 084dc6a commit 018ee83
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 018ee83

Please sign in to comment.