mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
Add support for call closed event
This commit is contained in:
parent
dbf30acd19
commit
cff2cdada2
@ -236,6 +236,10 @@ class UserWebSocket {
|
||||
case "call_peer_ready":
|
||||
SendEvent("callPeerReady", msg.data);
|
||||
break;
|
||||
|
||||
case "call_closed":
|
||||
SendEvent("callClosed", msg.data);
|
||||
break;
|
||||
|
||||
|
||||
default:
|
||||
|
@ -111,6 +111,12 @@ document.addEventListener("callPeerReady", (e) => {
|
||||
OpenCalls.get(detail.callID).PeerReady(detail.peerID)
|
||||
})
|
||||
|
||||
document.addEventListener("callClosed", e => {
|
||||
const callID = e.detail;
|
||||
|
||||
if(OpenCalls.has(callID))
|
||||
OpenCalls.get(callID).Close(false);
|
||||
});
|
||||
|
||||
document.addEventListener("wsClosed", () => {
|
||||
// Close all the current conversations
|
||||
|
Loading…
Reference in New Issue
Block a user