mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-04 08:08:16 +02:00
Added In-reply-to multi address support
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user