@vgroup/dialbox 0.4.166 → 0.4.167

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.
@@ -3570,11 +3570,11 @@ class DialboxComponent {
3570
3570
  });
3571
3571
  });
3572
3572
  if (parentCall.length > 0) {
3573
- this.notificationCallList = this.notificationCallList.filter((item) => !parentCall.includes(item.participantId));
3574
- this.incomingCallsList = [...this.incomingCallsList, this.notificationCallList];
3573
+ this.notificationCallList = this.notificationCallList.filter((item) => !parentCall.includes(item === null || item === void 0 ? void 0 : item.participantId));
3574
+ this.incomingCallsList = [...this.incomingCallsList, ...this.notificationCallList];
3575
3575
  }
3576
3576
  else {
3577
- this.incomingCallsList = [...this.incomingCallsList, this.notificationCallList];
3577
+ this.incomingCallsList = [...this.incomingCallsList, ...this.notificationCallList];
3578
3578
  }
3579
3579
  this.isCallInProgress = true;
3580
3580
  this.isDialpadHidden = false;