Fallback to in-reply-to for thread ID when no references

pull/146/head
M66B 6 years ago
parent a6b65f9330
commit 4bb7928319

@ -402,6 +402,10 @@ public class MessageHelper {
if (!TextUtils.isEmpty(ref))
return ref;
String inreplyto = getInReplyTo();
if (inreplyto != null)
return inreplyto;
String msgid = getMessageID();
return (TextUtils.isEmpty(msgid) ? Long.toString(uid) : msgid);
}

Loading…
Cancel
Save