Skip to content

Commit

Permalink
bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sanluan committed Sep 10, 2024
1 parent 03313c7 commit b2b4f8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ public static void initContent(CmsContent entity, SysSite site, CmsModel cmsMode
}
if (null != attribute.getText() && base64) {
attribute.setText(HtmlUtils.cleanUnsafeHtml(
new String(VerificationUtils.base64Decode(attribute.getText()), Constants.DEFAULT_CHARSET),
new String(VerificationUtils.base64Decode(attribute.getText()), StandardCharsets.UTF_8),
site.getSitePath()));
}
}
Expand Down

0 comments on commit b2b4f8b

Please sign in to comment.