@vgroup/dialbox 0.6.2-9.21 → 0.6.2-9.23
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.
|
@@ -1965,7 +1965,7 @@ class CallProgressComponent {
|
|
|
1965
1965
|
this.onholdOrUnholdParticipant({
|
|
1966
1966
|
participantId: [res.participantId],
|
|
1967
1967
|
conferenceId: res?.conferenceId,
|
|
1968
|
-
hold:
|
|
1968
|
+
hold: false,
|
|
1969
1969
|
mute: res?.mute || false,
|
|
1970
1970
|
conference: res.isConference || false
|
|
1971
1971
|
});
|
|
@@ -1976,7 +1976,7 @@ class CallProgressComponent {
|
|
|
1976
1976
|
this.onholdOrUnholdParticipant({
|
|
1977
1977
|
participantId: [this.currentCall.participantId],
|
|
1978
1978
|
conferenceId: this.currentCall?.conferenceId,
|
|
1979
|
-
hold:
|
|
1979
|
+
hold: false,
|
|
1980
1980
|
mute: this.currentCall?.mute || false,
|
|
1981
1981
|
conference: this.currentCall.isConference || false
|
|
1982
1982
|
});
|
|
@@ -2808,7 +2808,7 @@ class CallProgressComponent {
|
|
|
2808
2808
|
conference: this.currentCall?.isConference || false
|
|
2809
2809
|
});
|
|
2810
2810
|
if (this.currentCall?.isConference) {
|
|
2811
|
-
this.isConferenceCallHold = true;
|
|
2811
|
+
// this.isConferenceCallHold = true;
|
|
2812
2812
|
}
|
|
2813
2813
|
this.startCall(callData, isNewConference);
|
|
2814
2814
|
}
|
|
@@ -3408,7 +3408,7 @@ class CallProgressComponent {
|
|
|
3408
3408
|
}
|
|
3409
3409
|
if (c?.isConference && !isConference) {
|
|
3410
3410
|
isConference = true;
|
|
3411
|
-
c['isConferenceCallHold'] = true;
|
|
3411
|
+
// c['isConferenceCallHold'] = true;
|
|
3412
3412
|
holdList.push(c);
|
|
3413
3413
|
}
|
|
3414
3414
|
});
|