提交 a051b68d 编写于 作者: minghao.wu's avatar minghao.wu

feature: hint按照逗号拆分

上级 96826ed7
流水线 #2181 已通过 于阶段
in 23 second
......@@ -224,7 +224,10 @@ public class AntiSpamServiceImpl implements AntiSpamService {
msg = getMessageByLabel(label);
}
for (JsonElement eleHint : hintArray) {
hint.add(eleHint.getAsString());
String[] hints = eleHint.getAsString().split(",");
for (String ht : hints) {
hint.add(ht.trim());
}
}
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册