@vgroup/dialbox 0.3.90 → 0.3.91

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.
@@ -1879,8 +1879,8 @@ class CallProgressComponent {
1879
1879
  }
1880
1880
  }
1881
1881
  getStatus(res) {
1882
- const statusList = ["answered", "participant-hold", "participant-mute", "participant-join", "queued", "in-progress", "ringing", "initiated"];
1883
- if (statusList.includes(res.status)) {
1882
+ const statusList = ["answered", "participant-hold", "participant-mute", "participant-join", "queued", "in-progress", "initiated"];
1883
+ if (statusList.includes(res.status) || (res.status == "ringing" && !res.isIncomingCall)) {
1884
1884
  return true;
1885
1885
  }
1886
1886
  else {