Update verification-related strings to better match mobile app

FREEBIE
This commit is contained in:
Scott Nonnenberg 2017-06-29 14:32:40 -10:00
parent f654532fa8
commit b6cca41a0c
7 changed files with 53 additions and 43 deletions

View file

@ -142,8 +142,7 @@
|| (beginningVerified !== verified && verified !== UNVERIFIED)
|| (keychange && verified === VERIFIED)) {
var local = !options.viaSyncMessage && !options.viaContactSync;
this.addVerifiedChange(this.id, verified === VERIFIED, {local: local});
this.addVerifiedChange(this.id, verified === VERIFIED, {local: !options.viaSyncMessage});
}
if (!options.viaSyncMessage) {
return this.sendVerifySyncMessage(this.id, verified);
@ -302,7 +301,7 @@
if (this.isPrivate()) {
var groups = ConversationController.getAllGroupsInvolvingId(id);
_.forEach(groups, function(group) {
group.addVerifiedChange(id, verified);
group.addVerifiedChange(id, verified, options);
});
}
},