mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-19 02:15:28 +00:00
Prevent crash
This commit is contained in:
parent
3eb3a7ed18
commit
8509293dbf
1 changed files with 4 additions and 3 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue