From 9a16fcb6fc27868fe5f452a6df70b3c7980dbdd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Wed, 28 Apr 2021 10:31:49 +0200 Subject: [PATCH] Emit in removeCallForRoom() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/CallHandler.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CallHandler.tsx b/src/CallHandler.tsx index 8e8f120852..e9c85db84e 100644 --- a/src/CallHandler.tsx +++ b/src/CallHandler.tsx @@ -552,6 +552,7 @@ export default class CallHandler extends EventEmitter { private removeCallForRoom(roomId: string) { this.calls.delete(roomId); + this.emit(CallHandlerEvent.CallsChanged, this.calls); } private showICEFallbackPrompt() {