Archive sessions whenever an identity key changes

Sessions established with the previous identity should no longer be used for
sending, so we should close them.

Since we've added this call to saveIdentity, we can omit the call to it after
profile fetches.

// FREEBIE
pull/749/head
lilia 8 years ago committed by Scott Nonnenberg
parent 0056cbefc1
commit d7054f4b63

@ -569,11 +569,7 @@
return textsecure.storage.protocol.saveIdentity(
id, identityKey, false
).then(function(isIdentityChange) {
if (isIdentityChange) {
return textsecure.storage.protocol.archiveAllSessions(id);
}
});
);
});
},

@ -457,7 +457,9 @@
nonblockingApproval : nonblockingApproval,
}).then(function() {
this.trigger('keychange', identifier);
resolve(true);
this.archiveAllSessions(identifier).then(function() {
resolve(true);
}, reject);
}.bind(this));
} else if (this.isNonBlockingApprovalRequired(identityRecord)) {
console.log("Setting approval status...");

Loading…
Cancel
Save