Don't merge messages with different trust statuses

This commit is contained in:
Andreas Straub 2015-07-15 15:45:12 +02:00
parent fca0c36757
commit e8ec2ee628

View File

@ -399,7 +399,8 @@ public class Message extends AbstractEntity {
!message.getBody().startsWith(ME_COMMAND) &&
!this.getBody().startsWith(ME_COMMAND) &&
!this.bodyIsHeart() &&
!message.bodyIsHeart()
!message.bodyIsHeart() &&
this.isTrusted() == message.isTrusted()
);
}
@ -679,4 +680,9 @@ public class Message extends AbstractEntity {
public String getAxolotlFingerprint() {
return axolotlFingerprint;
}
public boolean isTrusted() {
return conversation.getAccount().getAxolotlService().getFingerprintTrust(axolotlFingerprint)
== AxolotlService.SQLiteAxolotlStore.Trust.TRUSTED;
}
}