@vgroup/dialbox 0.4.159 → 0.4.160

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.
@@ -3797,7 +3797,14 @@ class DialboxComponent {
3797
3797
  // deviceId: this.deviceId,
3798
3798
  // conferenceId: this.incomingCallnotification.data.data.conferenceId || 'no'
3799
3799
  // }
3800
- this.incomingCallsList.push({ direction: "incoming-call", img: 'assets/images/user.jpg', isIncomingCall: true, isHold: false, isConference: false, isAcceptCall: false, dial: true, phone: this.incomingCallnotification.data.data?.fromNumber, participantId: this.incomingCallnotification.data.data?.participantId, name: this.incomingCallnotification.data.data?.fromName, time: '', id: this.incomingCallnotification.data.data?.participantId });
3800
+ let incomingCall = {
3801
+ conferenceId: 'no',
3802
+ isActive: true,
3803
+ participants: [
3804
+ { direction: "incoming-call", img: 'assets/images/user.jpg', isIncomingCall: true, isHold: false, isConference: false, isAcceptCall: false, dial: true, phone: this.incomingCallnotification.data.data?.fromNumber, participantId: this.incomingCallnotification.data.data?.participantId, name: this.incomingCallnotification.data.data?.fromName, time: '', id: this.incomingCallnotification.data.data?.participantId }
3805
+ ]
3806
+ };
3807
+ this.incomingCallsList.push(incomingCall);
3801
3808
  if (this.incomingCallnotification.data.data?.participantId) {
3802
3809
  this.isCallInProgress = true;
3803
3810
  }