Set LiveKit keyring size to 256 (#2660)

This commit is contained in:
Hugh Nimmo-Smith
2024-10-10 10:34:38 +01:00
committed by GitHub
parent 697e1a6d81
commit 8272c54177
3 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ export class MatrixKeyProvider extends BaseKeyProvider {
private rtcSession?: MatrixRTCSession;
public constructor() {
super({ ratchetWindowSize: 0 });
super({ ratchetWindowSize: 0, keyringSize: 256 });
}
public setRTCSession(rtcSession: MatrixRTCSession): void {