Set ratchetWindowSize to > 0 enable rachet compatibility.

This commit is contained in:
Timo
2025-04-22 18:08:47 +02:00
parent 8fd99ed23e
commit f5597fddaf

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 {