mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 06:08:31 +02:00
Fixed thread with empty msgid
This commit is contained in:
@@ -36,6 +36,6 @@ public class TupleThreadInfo {
|
||||
}
|
||||
|
||||
public boolean isReferencing(String msgid) {
|
||||
return !isSelf(msgid) && !isReferenced(msgid);
|
||||
return !TextUtils.isEmpty(msgid) && !isSelf(msgid) && !isReferenced(msgid);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user