Added In-reply-to multi address support

This commit is contained in:
M66B
2022-06-13 21:08:37 +02:00
parent 29b36948f7
commit c9ff506dab
5 changed files with 53 additions and 47 deletions

View File

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