Handles remote signals

This commit is contained in:
2020-04-11 14:05:29 +02:00
parent f3ae21c5c1
commit dea30cb0ce
3 changed files with 38 additions and 0 deletions

View File

@ -229,6 +229,10 @@ class UserWebSocket {
SendEvent("userLeftCall", msg.data);
break;
case "new_call_signal":
SendEvent("newCallSignal", msg.data);
break;
default:
console.error("WS Unspported kind of message!", msg);
break;