@vgroup/dialbox 0.6.3-0.6 → 0.6.3-0.7

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.
@@ -2972,7 +2972,7 @@ class CallProgressComponent {
2972
2972
  }
2973
2973
  getAllParticipants(conferenceSid) {
2974
2974
  this.extensionService.getAllParticipants(conferenceSid).subscribe((res) => {
2975
- this.allParticipentList = res.participants.filter((resInfo) => (resInfo?.to == 'c2c_softphone_client' && resInfo?.direction == 'incoming-call') || resInfo?.to != 'c2c_softphone_client');
2975
+ this.allParticipentList = res.participants.filter((resInfo) => !(resInfo?.to == 'c2c_softphone_client' && resInfo?.direction == 'incoming-call'));
2976
2976
  ;
2977
2977
  this.filteredParticipentList = this.allParticipentList;
2978
2978
  this.applyFilter();