@vgroup/dialbox 0.6.2-9.19 → 0.6.2-9.20

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.
@@ -1945,7 +1945,7 @@ class CallProgressComponent {
1945
1945
  this.leftParticipent[callInfo?.conferenceId] = [...new Map(callInfo?.participants.filter((item) => item?.isLeft === true).map((item) => [item?.direction == 'outgoing-call' ? item?.to || 'Unknown' : item?.from, item])).values()
1946
1946
  ];
1947
1947
  });
1948
- let validValues = new Set(this.newIncomingCallsList.flatMap((item) => item?.participants.map((val) => val?.participantId)));
1948
+ let validValues = new Set(this.newIncomingCallsList.flatMap((item) => item?.participants.map((val) => val?.id)));
1949
1949
  this.currentCallList = this.currentCallList.filter((item) => validValues.has(item?.participantId));
1950
1950
  let currentCall = this.currentCallList.filter((item) => item?.isAcceptCall && !item?.isHold);
1951
1951
  if (currentCall?.length == 1 && currentCall[0]?.id) {