20 lines
575 B
TypeScript
20 lines
575 B
TypeScript
// Copyright 2017-2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { UUID } from '../types/UUID';
|
|
import type { SignalProtocolStore } from '../SignalProtocolStore';
|
|
|
|
export function init(signalProtocolStore: SignalProtocolStore): void {
|
|
signalProtocolStore.on(
|
|
'keychange',
|
|
async (uuid: UUID, reason: string): Promise<void> => {
|
|
const conversation =
|
|
await window.ConversationController.getOrCreateAndWait(
|
|
uuid.toString(),
|
|
'private'
|
|
);
|
|
conversation.addKeyChange(reason);
|
|
}
|
|
);
|
|
}
|