null check quicksy domain
This commit is contained in:
parent
971bb60f42
commit
56ea9647cd
|
@ -1006,7 +1006,7 @@ public class Conversation extends AbstractEntity implements Blockable, Comparabl
|
||||||
&& !contact.isOwnServer()
|
&& !contact.isOwnServer()
|
||||||
&& !contact.showInContactList()
|
&& !contact.showInContactList()
|
||||||
&& !contact.isSelf()
|
&& !contact.isSelf()
|
||||||
&& !Config.QUICKSY_DOMAIN.equals(contact.getJid().toEscapedString())
|
&& !(Config.QUICKSY_DOMAIN != null && Config.QUICKSY_DOMAIN.equals(contact.getJid().toEscapedString()))
|
||||||
&& sentMessagesCount() == 0;
|
&& sentMessagesCount() == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue