From 41e152f4207d28be530feb9e895c134ac5a9f814 Mon Sep 17 00:00:00 2001 From: Timo K Date: Wed, 17 Sep 2025 11:25:49 +0200 Subject: [PATCH] dont throw disconnected error at start of the call Signed-off-by: Timo K --- src/room/InCallView.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/room/InCallView.tsx b/src/room/InCallView.tsx index c12b44c9..2f720148 100644 --- a/src/room/InCallView.tsx +++ b/src/room/InCallView.tsx @@ -209,8 +209,9 @@ export const InCallView: FC = ({ // annoyingly we don't get the disconnection reason this way, // only by listening for the emitted event - if (connectionState === ConnectionState.Disconnected) - throw new ConnectionLostError(); + // This needs to be done differential. with the vm connection state we start with Disconnected. + // if (connectionState === ConnectionState.Disconnected) + // throw new ConnectionLostError(); const containerRef1 = useRef(null); const [containerRef2, bounds] = useMeasure();