From 024964acebd2d5c50890a15c596888750ec27534 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Mon, 22 May 2017 18:33:14 +0100 Subject: [PATCH] pass call state through, for things that don't have access to full API Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/CallHandler.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/CallHandler.js b/src/CallHandler.js index 5199ef0a67..6a30121992 100644 --- a/src/CallHandler.js +++ b/src/CallHandler.js @@ -179,7 +179,8 @@ function _setCallState(call, roomId, status) { } dis.dispatch({ action: 'call_state', - room_id: roomId + room_id: roomId, + state: status, }); }