@vgroup/dialbox 0.7.98 → 0.8.0

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.
@@ -2767,7 +2767,7 @@ class CallProgressComponent {
2767
2767
  From: rejoinParticipentInfo.from,
2768
2768
  To: rejoinParticipentInfo.to,
2769
2769
  Env: environment.abb,
2770
- Token: tokenData.token.id,
2770
+ Token: rejoinParticipentInfo.id,
2771
2771
  Ext: rejoinParticipentInfo.extNum,
2772
2772
  conferenceId: rejoinParticipentInfo?.conferenceId
2773
2773
  },
@@ -4911,7 +4911,7 @@ class DialboxComponent {
4911
4911
  }
4912
4912
  else {
4913
4913
  // We are NOT a participant — remove from incomingCallsList only if it is NOT an incoming-call notification
4914
- if (callIndex > -1 && this.incomingCallsList[callIndex]?.direction !== 'incoming-call') {
4914
+ if (callIndex > -1 && this.incomingCallsList[callIndex]?.callDirection !== 'incoming-call') {
4915
4915
  // FIX: splice(index, deleteCount) — was incorrectly splice(1, callIndex)
4916
4916
  this.incomingCallsList.splice(callIndex, 1);
4917
4917
  }