Commit a9e7cbb1 authored by 赵建伟's avatar 赵建伟

update codes

parent bf5f978d
...@@ -86,18 +86,18 @@ public class PortraitMonitorShdOperator implements BaseOperator{ ...@@ -86,18 +86,18 @@ public class PortraitMonitorShdOperator implements BaseOperator{
return true; return true;
} }
} }
} String appAction = appObject.getString("action");
String appAction = appObject.getString("action"); if (null != appAction) {
if (null != appAction) { String[] edits = {"create", "update", "answer"};
String[] edits = {"create", "update", "answer"}; if (Arrays.asList(edits).contains(appAction)) {
if (Arrays.asList(edits).contains(appAction)) { jsonObject.put("statistics_action", appAction);
jsonObject.put("statistics_action", appAction); return true;
return true; }
} String[] interact = {"like", "comment", "collect"};
String[] interact = {"like", "comment", "collect"}; if (Arrays.asList(interact).contains(appAction)) {
if (Arrays.asList(interact).contains(appAction)) { jsonObject.put("statistics_action", appAction);
jsonObject.put("statistics_action", appAction); return true;
return true; }
} }
} }
} }
......
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