more tuning and enabling multi-SFU

This commit is contained in:
fkwp
2026-04-24 17:39:04 +02:00
parent 4bbf3e501e
commit a78bfad879
2 changed files with 6 additions and 5 deletions

View File

@@ -6,12 +6,12 @@
} }
}, },
"ssla": "https://static.element.io/legal/element-software-and-services-license-agreement-uk-1.pdf", "ssla": "https://static.element.io/legal/element-software-and-services-license-agreement-uk-1.pdf",
"sync_disconnect_grace_period_ms": 20000, "sync_disconnect_grace_period_ms": 60000,
"matrix_rtc_session": { "matrix_rtc_session": {
"wait_for_key_rotation_ms": 3000, "wait_for_key_rotation_ms": 3000,
"membership_event_expiry_ms": 180000000, "membership_event_expiry_ms": 180000000,
"delayed_leave_event_delay_ms": 60000, "delayed_leave_event_delay_ms": 120000,
"delayed_leave_event_restart_ms": 4000, "delayed_leave_event_restart_ms": 15000,
"network_error_retry_ms": 100 "network_error_retry_ms": 100
}, },
"posthog": { "posthog": {

View File

@@ -409,8 +409,9 @@ export function createCallViewModel$(
options.encryptionSystem, options.encryptionSystem,
matrixRTCSession, matrixRTCSession,
); );
const matrixRTCMode$ = // const matrixRTCMode$ =
options.matrixRTCMode$ ?? constant(MatrixRTCMode.Legacy); // options.matrixRTCMode$ ?? constant(MatrixRTCMode.Legacy);
const matrixRTCMode$ = constant(MatrixRTCMode.Compatibility);
// Each hbar seperates a block of input variables required for the CallViewModel to function. // Each hbar seperates a block of input variables required for the CallViewModel to function.
// The outputs of this block is written under the hbar. // The outputs of this block is written under the hbar.