mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-22 06:01:12 +00:00
Fixed extra Reference
This commit is contained in:
parent
8a7cacc8d9
commit
13417b132f
1 changed files with 1 additions and 3 deletions
|
@ -180,9 +180,7 @@ public class MessageHelper {
|
|||
if (message.replying != null)
|
||||
replying = db.message().getMessage(message.replying);
|
||||
|
||||
if (replying == null)
|
||||
imessage.addHeader("References", message.msgid);
|
||||
else {
|
||||
if (replying != null) {
|
||||
imessage.addHeader("In-Reply-To", replying.msgid);
|
||||
imessage.addHeader("References", (replying.references == null ? "" : replying.references + " ") + replying.msgid);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue