@vgroup/dialbox 0.7.40 → 0.7.41

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.
@@ -2524,7 +2524,8 @@ class CallProgressComponent {
2524
2524
  }
2525
2525
  }
2526
2526
  }
2527
- const rejoinParticipentInfo = callInfo?.participants.find((resData) => (this.deviceNumberList.includes(resData?.from) && resData?.client && resData?.host));
2527
+ const rejoinParticipentInfo = callInfo?.participants.find((resData) => ((this.deviceNumberList.includes(resData?.from)
2528
+ && resData?.client && resData?.direction == 'outgoing-call') || (this.deviceNumberList.includes(resData?.to) && resData?.direction == 'incoming-call' && !resData?.businessNumber && resData?.host) && resData?.isLeft));
2528
2529
  this.showRingAnimation = true;
2529
2530
  // 1️⃣ Get new token for same conference
2530
2531
  const tokenData = await this.getOutgoingCallToken(callInfo?.conferenceId);