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 49cecdf commit 195dc36Copy full SHA for 195dc36
samples/webrtc/js/app.js
@@ -691,7 +691,8 @@
691
692
if (app.currentSession.currentUserID === app.currentSession.initiatorID && !isCallEnded) {
693
/** get array if users without user who ends call */
694
- takedCallCallee = _.reject(takedCallCallee, function(num){ return num.id !== +userID; });
+ takedCallCallee = _.reject(takedCallCallee, function(num){ return num.id === +userID; });
695
+
696
qbApp.MsgBoard.update('accept_call', {users: takedCallCallee});
697
}
698
0 commit comments