Revert "Added In-reply-to multi address support"

This reverts commit c9ff506dab.
This commit is contained in:
M66B
2022-06-27 19:29:49 +02:00
parent 2d6949a0cb
commit 53d2151b77
5 changed files with 47 additions and 53 deletions

View File

@@ -1316,7 +1316,7 @@ public class MessageHelper {
String getInReplyTo() throws MessagingException {
String[] a = getInReplyTos();
return (a.length == 0 ? null : TextUtils.join(" ", a));
return (a.length < 1 ? null : a[0]);
}
String[] getInReplyTos() throws MessagingException {