Fix encryption keys type error

See commit 174439c2f0c09cf9926c28435ba4db1345df4aee in matrix-js-sdk for the other part of the fix.
This commit is contained in:
Robin
2026-01-05 18:47:57 +01:00
parent 1006d06b04
commit b585af41da
3 changed files with 7 additions and 7 deletions

View File

@@ -40,7 +40,7 @@ export class MatrixKeyProvider extends BaseKeyProvider {
}
private onEncryptionKeyChanged = (
encryptionKey: Uint8Array,
encryptionKey: Uint8Array<ArrayBuffer>,
encryptionKeyIndex: number,
participantId: string,
): void => {