Sync contact record after key change notification

This commit is contained in:
Fedor Indutny 2023-04-10 14:22:02 -07:00 committed by GitHub
parent 5b38034426
commit 531269430f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3290,6 +3290,10 @@ export class ConversationModel extends window.Backbone
this.set('senderKeyInfo', updatedSenderKeyInfo);
window.Signal.Data.updateConversation(this.attributes);
}
if (isDirectConversation(this.attributes)) {
this.captureChange(`addKeyChange(${reason})`);
}
});
}