@vgroup/dialbox 0.3.93 → 0.3.94
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.
|
@@ -1923,10 +1923,10 @@ class CallProgressComponent {
|
|
|
1923
1923
|
}
|
|
1924
1924
|
getStatus(res) {
|
|
1925
1925
|
const statusList = ["answered", "participant-hold", "participant-mute", "participant-join", "queued", "in-progress", "initiated", 'ringing'];
|
|
1926
|
-
if (statusList.includes(res.status) &&
|
|
1926
|
+
if (statusList.includes(res.status) && res.direction != "incoming-call") {
|
|
1927
1927
|
return true;
|
|
1928
1928
|
}
|
|
1929
|
-
else if (res.
|
|
1929
|
+
else if (res.direction == "incoming-call") {
|
|
1930
1930
|
return this.isCurrentIncomingCallList.includes(res.participantId);
|
|
1931
1931
|
}
|
|
1932
1932
|
else {
|