Remove opponentMember check

This commit is contained in:
Robert Long 2021-07-28 18:09:04 -07:00
parent 0d7ad5c07a
commit 49353cd2fe

View file

@ -319,14 +319,11 @@ export class ConferenceCallManager extends EventEmitter {
return; return;
} }
if (call.opponentMember) { const userId = call.opponentMember.userId;
const userId = call.opponentMember.userId; this._addCall(call, userId);
this._addCall(call, userId); this._setDebugState(userId, "answered");
this._setDebugState(userId, "answered"); this._addDebugEvent(userId, "answer", { callId: call.callId });
this._addDebugEvent(userId, "answer", { callId: call.callId }); call.answer();
call.answer();
return;
}
}; };
_addCall(call, userId) { _addCall(call, userId) {