Set ratchetWindowSize to > 0 enable rachet compatibility. (#3224)

This commit is contained in:
Timo
2025-04-23 09:22:54 +02:00
committed by GitHub
parent 78a41c09de
commit a1d6eef12a

View File

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