You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
809 B
JavaScript
29 lines
809 B
JavaScript
/*
|
|
* vim: ts=4:sw=4:expandtab
|
|
*/
|
|
|
|
;(function () {
|
|
'use strict';
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
Whisper.KeyChangeListener = {
|
|
init: function(signalProtocolStore) {
|
|
if (!(signalProtocolStore instanceof SignalProtocolStore)) {
|
|
throw new Error('KeyChangeListener requires a SignalProtocolStore');
|
|
}
|
|
|
|
signalProtocolStore.on('keychange', function(id) {
|
|
ConversationController.getOrCreateAndWait(id, 'private').then(function(conversation) {
|
|
conversation.addKeyChange(id);
|
|
|
|
ConversationController.getAllGroupsInvolvingId(id).then(function(groups) {
|
|
_.forEach(groups, function(group) {
|
|
group.addKeyChange(id);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|
|
};
|
|
}());
|