1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-28 02:37:16 +00:00

Revert "Use List-Id for threading"

This reverts commit bbc550ef1d.
This commit is contained in:
M66B 2020-04-29 17:02:45 +02:00
parent 5cb56dae1c
commit d46ea93f6a

View file

@ -785,11 +785,6 @@ public class MessageHelper {
String[] getReferences() throws MessagingException {
List<String> result = new ArrayList<>();
String listId = imessage.getHeader("List-Id", null);
if (!TextUtils.isEmpty(listId))
result.add(listId);
String refs = imessage.getHeader("References", null);
if (refs != null)
result.addAll(Arrays.asList(getReferences(refs)));