Revert "Prevent crash"

This reverts commit 8509293dbf.
pull/208/head
M66B 2 years ago
parent 614d264ca1
commit 2d6949a0cb

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

Loading…
Cancel
Save