We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 379a774 commit 84313ffCopy full SHA for 84313ff
src/main/java/org/b3log/symphony/processor/SettingsProcessor.java
@@ -1045,7 +1045,7 @@ public void updateProfiles(final RequestContext context) {
1045
}
1046
1047
// 敏感词检测
1048
- String content = userTags + userURL + userQQ + userIntro + userNickname;
+ String content = userNickname + "\n" + userIntro + "\n" + userTags + "\n" + userURL;
1049
JSONObject censorResult = QiniuTextCensor.censor(content);
1050
if (censorResult.optString("do").equals("block")) {
1051
context.renderMsg("个人信息中含违规信息,请修改后重试。");
0 commit comments