1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-19 02:15:28 +00:00

Prevent crash

This commit is contained in:
M66B 2022-06-14 18:30:06 +02:00
parent 3eb3a7ed18
commit 8509293dbf

View file

@ -4261,9 +4261,10 @@ class Core {
map.put(f.id, f);
}
for (EntityFolder f : map.values())
for (String inreplyto : message.inreplyto.split(" "))
EntityOperation.queue(context, f, EntityOperation.REPORT, inreplyto, label);
if (message.inreplyto != null)
for (EntityFolder f : map.values())
for (String inreplyto : message.inreplyto.split(" "))
EntityOperation.queue(context, f, EntityOperation.REPORT, inreplyto, label);
}
}
} catch (Throwable ex) {