| 1414 | } |
| 1415 | |
| 1416 | private boolean onActionFlag(Context context, EntityMessage message, JSONObject jargs) throws JSONException { |
| 1417 | Integer color = (jargs.has("color") && !jargs.isNull("color") |
| 1418 | ? jargs.getInt("color") : null); |
| 1419 | |
| 1420 | EntityOperation.queue(context, message, EntityOperation.FLAG, true, color, false); |
| 1421 | |
| 1422 | message.ui_flagged = true; |
| 1423 | message.color = color; |
| 1424 | |
| 1425 | return true; |
| 1426 | } |
| 1427 | |
| 1428 | private boolean onActionImportance(Context context, EntityMessage message, JSONObject jargs) throws JSONException { |
| 1429 | Integer importance = jargs.getInt("value"); |