@vgroup/dialbox 0.6.3-0.41 → 0.6.3-0.42
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.
|
@@ -1856,7 +1856,7 @@ class CallProgressComponent {
|
|
|
1856
1856
|
isHold: res?.isHold,
|
|
1857
1857
|
isConferenceHold: ourNumberInfo?.isHold || false,
|
|
1858
1858
|
isMute: false,
|
|
1859
|
-
isConference: res?.isConference,
|
|
1859
|
+
isConference: res?.isConference || this.isConference,
|
|
1860
1860
|
isAcceptCall: res?.direction == "incoming-call" ? this.getStatus(res) : true,
|
|
1861
1861
|
dial: true,
|
|
1862
1862
|
phone: res?.direction == "incoming-call" ? res?.from : res?.to,
|
|
@@ -1891,7 +1891,7 @@ class CallProgressComponent {
|
|
|
1891
1891
|
isHold: res?.isHold,
|
|
1892
1892
|
isConferenceHold: ourNumberInfo?.isHold || false,
|
|
1893
1893
|
isMute: res?.isMute,
|
|
1894
|
-
isConference: res?.isConference,
|
|
1894
|
+
isConference: res?.isConference || this.isConference,
|
|
1895
1895
|
isAcceptCall: res.direction == "incoming-call" ? this.getStatus(res) : true,
|
|
1896
1896
|
dial: true,
|
|
1897
1897
|
phone: res?.direction == "incoming-call" ? res?.from : res?.to,
|
|
@@ -1963,7 +1963,7 @@ class CallProgressComponent {
|
|
|
1963
1963
|
this.currentCall = currentCall[0] || this.currentCallList[0];
|
|
1964
1964
|
}
|
|
1965
1965
|
else if (currentCall?.length > 1 && currentCall[0]?.isConference) {
|
|
1966
|
-
this.currentCall = this.currentConferenceCall.
|
|
1966
|
+
this.currentCall = this.currentConferenceCall.participants[0] || this.currentCallList[0];
|
|
1967
1967
|
this.isConference = true;
|
|
1968
1968
|
}
|
|
1969
1969
|
if (!this.currentConferenceCall && !this.isNewAddedCall) {
|