mirror of
https://github.com/vector-im/element-call.git
synced 2026-08-29 21:15:19 +00:00
Update signature
This commit is contained in:
@@ -968,7 +968,10 @@ export class CallViewModel extends ViewModel {
|
|||||||
? this.scope.behavior<
|
? this.scope.behavior<
|
||||||
"unknown" | "ringing" | "timeout" | "decline" | "success"
|
"unknown" | "ringing" | "timeout" | "decline" | "success"
|
||||||
>(
|
>(
|
||||||
combineLatest(this.livekitDisconnected$, this.someoneElseJoined$).pipe(
|
combineLatest([
|
||||||
|
this.livekitDisconnected$,
|
||||||
|
this.someoneElseJoined$,
|
||||||
|
]).pipe(
|
||||||
switchMap(([isDisconnected, someoneElseJoined]) => {
|
switchMap(([isDisconnected, someoneElseJoined]) => {
|
||||||
if (isDisconnected) {
|
if (isDisconnected) {
|
||||||
// Do not ring until we're connected.
|
// Do not ring until we're connected.
|
||||||
|
|||||||
Reference in New Issue
Block a user