We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd035c3 commit 5763141Copy full SHA for 5763141
app.js
@@ -142,7 +142,7 @@ app.ws('/connection', (ws) => {
142
console.log(`Twilio -> Media stream ${streamSid} ended.`.underline.red);
143
144
for (const k in Object.keys(activeCalls)) {
145
- if (activeCalls[k] == callSid){
+ if (activeCalls[k].callSid == callSid) {
146
delete activeCalls[k];
147
return;
148
}
0 commit comments