@vgroup/dialbox 0.7.13 → 0.7.14

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.
@@ -2303,7 +2303,10 @@ class CallProgressComponent {
2303
2303
  }
2304
2304
  if (changes['callAction']?.currentValue && this.callAction?.type == 'reJoin') {
2305
2305
  this.deviceNumberList = this.callerIdList.map((res) => res.number);
2306
- this.rejoinHost(this.callAction);
2306
+ let data = this.newIncomingCallsList.find((item) => item?.conferenceId == this.callAction?.conferenceId)?.participants.find((resData) => resData?.host);
2307
+ if (data?.isLeft || !this.newIncomingCallsList?.length) {
2308
+ this.rejoinHost(this.callAction);
2309
+ }
2307
2310
  }
2308
2311
  if (changes['newCallConference']?.currentValue) {
2309
2312
  this.CallToUnsavedNumber(this.newCallConference?.number, true);