Commit df7c11a9 by 徐高华

加名称长度

parent 233ef61d
...@@ -45,7 +45,7 @@ public class EmojiFilterUtil { ...@@ -45,7 +45,7 @@ public class EmojiFilterUtil {
// 到这里铁定包含 // 到这里铁定包含
StringBuilder buf = null; StringBuilder buf = null;
int len = source.length(); int len = source.length();
if (len > 20 && isPhrase) { if (len > 100 && isPhrase) {
return "*"; return "*";
} }
for (int i = 0; i < len; i++) { for (int i = 0; i < len; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment