Message threading fix

This commit is contained in:
M66B
2018-08-11 19:31:08 +00:00
parent 606bef05d7
commit b2f8fecc0b
3 changed files with 5 additions and 2 deletions

View File

@@ -722,6 +722,8 @@ public class ServiceSynchronize extends LifecycleService {
try {
JSONArray jargs = new JSONArray(op.args);
EntityMessage message = db.message().getMessage(op.message);
if (message == null)
throw new MessageRemovedException();
if (EntityOperation.SEEN.equals(op.name))
doSeen(folder, ifolder, message, jargs);