@vgroup/dialbox 0.4.71 → 0.4.72

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.
@@ -1926,18 +1926,18 @@ class CallProgressComponent {
1926
1926
  time: this.getTimeDifference(res.joinedAt || new Date().toUTCString()),
1927
1927
  };
1928
1928
  }
1929
- if (this.currentCallList.length == 1 && this.currentCallList[0].isHold) {
1930
- setTimeout(() => {
1931
- if (this.currentCallList.length == 1 && this.currentCallList[0].isHold) {
1932
- this.onholdOrUnholdParticipant({
1933
- participantId: [this.currentCallList[0].participantId],
1934
- conferenceId: this.conferenceId,
1935
- hold: false,
1936
- conference: this.currentCallList[0].isConference
1937
- });
1938
- }
1939
- }, 1000);
1940
- }
1929
+ // if(this.currentCallList.length == 1 && this.currentCallList[0].isHold){
1930
+ // setTimeout(() => {
1931
+ // if(this.currentCallList.length == 1 && this.currentCallList[0].isHold) {
1932
+ // this.onholdOrUnholdParticipant({
1933
+ // participantId: [this.currentCallList[0].participantId],
1934
+ // conferenceId: this.conferenceId,
1935
+ // hold: false,
1936
+ // conference: this.currentCallList[0].isConference
1937
+ // });
1938
+ // }
1939
+ // }, 1000);
1940
+ // }
1941
1941
  }
1942
1942
  else {
1943
1943
  this.currentCallList.push({
@@ -4382,7 +4382,6 @@ class DialboxComponent {
4382
4382
  const res = await this.twilioService.getToNumber(dialedNumber, ipAddress.address.countryCode).toPromise();
4383
4383
  if (res.status == 200) {
4384
4384
  console.log(res, 'getToNumber');
4385
- this.toastTimeout = res.timeInterval * 1000;
4386
4385
  await this.showNumberToast(res);
4387
4386
  }
4388
4387
  }