@vgroup/dialbox 0.7.60 → 0.7.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4593,10 +4593,6 @@ class DialboxComponent {
|
|
|
4593
4593
|
const socketConferenceIds = incomingCallData.map((c) => c.conferenceId);
|
|
4594
4594
|
incomingCallData.forEach((callInfo) => {
|
|
4595
4595
|
// Check if WE are an active participant in this conference
|
|
4596
|
-
if (!callInfo?.participants?.length && !this.nullParticipantCallList.includes(callInfo?.conferenceId)) {
|
|
4597
|
-
this.nullParticipantCallList.push(callInfo?.conferenceId);
|
|
4598
|
-
swal("Error", 'Call not connected facing some issue', "error");
|
|
4599
|
-
}
|
|
4600
4596
|
const ourNumber = callInfo?.participants.find((resData) => ((this.deviceNumberList.includes(resData?.from) && resData?.direction == 'outgoing-call' && resData?.client) ||
|
|
4601
4597
|
(this.deviceNumberList.includes(resData?.to) && resData?.direction == 'incoming-call' && resData?.client &&
|
|
4602
4598
|
resData?.callStatus !== 'completed' &&
|