Skip to content

Commit a1d6eef

Browse files
authored
Set ratchetWindowSize to > 0 enable rachet compatibility. (#3224)
1 parent 78a41c0 commit a1d6eef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/e2ee/matrixKeyProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class MatrixKeyProvider extends BaseKeyProvider {
1616
private rtcSession?: MatrixRTCSession;
1717

1818
public constructor() {
19-
super({ ratchetWindowSize: 0, keyringSize: 256 });
19+
super({ ratchetWindowSize: 10, keyringSize: 256 });
2020
}
2121

2222
public setRTCSession(rtcSession: MatrixRTCSession): void {

0 commit comments

Comments
 (0)