1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-25 07:23:03 +00:00

Forward raw duplicates

This commit is contained in:
M66B 2022-03-03 09:04:08 +01:00
parent 43ceb4e576
commit c5955ddc91

View file

@ -128,10 +128,12 @@ public class FragmentDialogForwardRaw extends FragmentDialogBase {
continue;
for (EntityMessage thread : messages) {
String hash = (message.hash == null ? message.msgid : message.hash);
if (hashes.contains(hash))
continue;
hashes.add(hash);
if (threads) {
String hash = (message.hash == null ? message.msgid : message.hash);
if (hashes.contains(hash))
continue;
hashes.add(hash);
}
result.add(thread.id);