Fixed thread with empty msgid

This commit is contained in:
M66B
2022-07-07 19:38:00 +02:00
parent 9b914df3a1
commit bf0532c46c
2 changed files with 3 additions and 2 deletions

View File

@@ -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);
}
}