From 7d6d11a19513ec2db86d5475ec4eb9e350c6a7f9 Mon Sep 17 00:00:00 2001 From: Half-Shot Date: Fri, 12 Sep 2025 15:17:50 +0100 Subject: [PATCH] fix test --- src/state/CallViewModel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/CallViewModel.ts b/src/state/CallViewModel.ts index 6ee3de47..ff68fa43 100644 --- a/src/state/CallViewModel.ts +++ b/src/state/CallViewModel.ts @@ -977,7 +977,7 @@ export class CallViewModel extends ViewModel { : constant(null); public readonly callWasSuccessful$ = this.callPickupState$.pipe( - every((x) => x !== "success"), + every((x) => x !== "success" && x === null), map((v) => !v), );