|
@@ -15,7 +15,7 @@ public class JsonNodeUtil {
|
|
|
Date date = new Date(Long.valueOf(value.replace("/Date(", "").replace(")/", "").replace("+0000", "")));
|
|
|
return DateUtil.getDay(date);
|
|
|
}
|
|
|
- return value;
|
|
|
+ return EmojiUtils.filterEmoji(value);
|
|
|
}
|
|
|
|
|
|
public static String getTime(JsonNode userNode, String key) {
|
|
@@ -27,7 +27,7 @@ public class JsonNodeUtil {
|
|
|
Date date = new Date(Long.valueOf(value.replace("/Date(", "").replace(")/", "").replace("+0000", "")));
|
|
|
return DateUtil.getTime(date);
|
|
|
}
|
|
|
- return value;
|
|
|
+ return EmojiUtils.filterEmoji(value);
|
|
|
}
|
|
|
|
|
|
public static String getValue(JsonNode userNode, String key1, String key2) {
|
|
@@ -38,7 +38,7 @@ public class JsonNodeUtil {
|
|
|
if (Tools.isEmpty(value)) {
|
|
|
return "";
|
|
|
}
|
|
|
- return value;
|
|
|
+ return EmojiUtils.filterEmoji(value);
|
|
|
}
|
|
|
|
|
|
public static void main(String[] args) {
|