mirror of https://github.com/M66B/FairEmail.git
parent
136effb6eb
commit
be7fc3a0da
|
@ -453,8 +453,10 @@ public class EntityOperation {
|
||||||
try {
|
try {
|
||||||
JSONArray jargs = new JSONArray(args);
|
JSONArray jargs = new JSONArray(args);
|
||||||
long tmpid = jargs.optLong(2, -1);
|
long tmpid = jargs.optLong(2, -1);
|
||||||
if (tmpid > 0)
|
if (tmpid < 0)
|
||||||
db.message().deleteMessage(tmpid);
|
return;
|
||||||
|
|
||||||
|
db.message().deleteMessage(tmpid);
|
||||||
} catch (JSONException ex) {
|
} catch (JSONException ex) {
|
||||||
Log.e(ex);
|
Log.e(ex);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue