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;
}
if (call.opponentMember) {
const userId = call.opponentMember.userId;
this._addCall(call, userId);
this._setDebugState(userId, "answered");
this._addDebugEvent(userId, "answer", { callId: call.callId });
call.answer();
return;
}
const userId = call.opponentMember.userId;
this._addCall(call, userId);
this._setDebugState(userId, "answered");
this._addDebugEvent(userId, "answer", { callId: call.callId });
call.answer();
};
_addCall(call, userId) {