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

update codes

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