do not merge bug reports

This commit is contained in:
Daniel Gultsch 2018-02-25 14:28:14 +01:00
parent 47dfe3c2e2
commit 7e09fac1da

View file

@ -568,7 +568,8 @@ public class Message extends AbstractEntity {
!message.bodyIsOnlyEmojis() && !message.bodyIsOnlyEmojis() &&
((this.axolotlFingerprint == null && message.axolotlFingerprint == null) || this.axolotlFingerprint.equals(message.getFingerprint())) && ((this.axolotlFingerprint == null && message.axolotlFingerprint == null) || this.axolotlFingerprint.equals(message.getFingerprint())) &&
UIHelper.sameDay(message.getTimeSent(),this.getTimeSent()) && UIHelper.sameDay(message.getTimeSent(),this.getTimeSent()) &&
this.getReadByMarkers().equals(message.getReadByMarkers()) this.getReadByMarkers().equals(message.getReadByMarkers()) &&
!this.conversation.getJid().toBareJid().toString().equals(Config.BUG_REPORTS)
); );
} }