only show not stranger if messages are coming from quicksy domain not quicksy contacts

This commit is contained in:
Christian Schneppe 2018-11-23 14:41:43 +01:00
parent 28ea64fd8e
commit 872a554be8

View file

@ -1149,7 +1149,7 @@ public class Conversation extends AbstractEntity implements Blockable, Comparabl
&& !contact.isOwnServer()
&& !contact.showInContactList()
&& !contact.isSelf()
&& !Config.QUICKSY_DOMAIN.equals(contact.getJid().getDomain())
&& !Config.QUICKSY_DOMAIN.equals(contact.getJid().toEscapedString())
&& sentMessagesCount() == 0;
}