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

This commit is contained in:
Timo
2025-04-22 21:40:36 +02:00
committed by GitHub
parent 1997502127
commit 920fa217d5

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 {