We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30d59f5 commit 5107e0aCopy full SHA for 5107e0a
src/e2ee/matrixKeyProvider.ts
@@ -26,8 +26,8 @@ export class MatrixKeyProvider extends BaseKeyProvider {
26
super({ ratchetWindowSize: 10, keyringSize: 10 });
27
28
this.onKeyRatchetComplete = (ratchetResult: RatchetResult, participantIdentity?: string, keyIndex?: number): void => {
29
- logger.debug(`key ratcheted event received for ${participantId} at index ${keyIndex}`);
30
- this.rtcSession?.onKeyRatcheted(ratchetResult.chainKey, keyIndex);
+ logger.debug(`key ratcheted event received for ${participantIdentity} at index ${keyIndex}`);
+ this.rtcSession?.onKeyRatcheted(ratchetResult.chainKey,participantIdentity, keyIndex);
31
};
32
33
this.on(KeyProviderEvent.KeyRatcheted, this.onKeyRatchetComplete);
0 commit comments