@vgroup/dialbox 0.4.120 → 0.4.121

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,9 +1926,9 @@ class CallProgressComponent {
1926
1926
  // console.log(e);
1927
1927
  // }
1928
1928
  }
1929
- if (changes['conferenceCallInfo'].currentValue) {
1929
+ if (changes['conferenceCallInfo'].currentValue && this.conferenceCallInfo && changes['conferenceCallInfo'].previousValue.conferenceSid != changes['conferenceCallInfo'].currentValue.conferenceSid) {
1930
1930
  this.isConference = true;
1931
- this.conferenceCallInfo = changes['conferenceCallInfo'].currentValue;
1931
+ console.log(this.conferenceCallInfo);
1932
1932
  this.conferenceCallInfo.participants.forEach((item, index) => {
1933
1933
  var _a;
1934
1934
  let callInfo = {
@@ -1940,6 +1940,7 @@ class CallProgressComponent {
1940
1940
  direction: item.direction,
1941
1941
  status: ''
1942
1942
  };
1943
+ console.log(callInfo);
1943
1944
  if (index == 0) {
1944
1945
  this.startCall(callInfo);
1945
1946
  }