@vgroup/dialbox 0.4.192 → 0.4.194
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.
- package/esm2020/lib/components/call-progress/call-progress.component.mjs +4 -3
- package/fesm2015/vgroup-dialbox.mjs +3 -2
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +3 -2
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2143,9 +2143,9 @@ class CallProgressComponent {
|
|
|
2143
2143
|
onEndCall(c, isAllCallEnd) {
|
|
2144
2144
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2145
2145
|
if (!c.isAcceptCall) {
|
|
2146
|
-
let index = this.currentCallList.findIndex((res) => res.participantId ==
|
|
2146
|
+
let index = this.currentCallList.findIndex((res) => res.participantId == c.participantId);
|
|
2147
2147
|
this.currentCallList.splice(index, 1);
|
|
2148
|
-
return;
|
|
2148
|
+
return false;
|
|
2149
2149
|
}
|
|
2150
2150
|
let participantId = isAllCallEnd ? 'all' : c.participantId || c.participantId;
|
|
2151
2151
|
let conferenceId = isAllCallEnd ? 'all' : c.conferenceId || this.currentCall.conferenceId;
|
|
@@ -2156,6 +2156,7 @@ class CallProgressComponent {
|
|
|
2156
2156
|
this.cdr.detectChanges();
|
|
2157
2157
|
}
|
|
2158
2158
|
yield this.getAllParticipants(this.twilioService.conferenceCallInfo.conferenceSid);
|
|
2159
|
+
return false;
|
|
2159
2160
|
});
|
|
2160
2161
|
}
|
|
2161
2162
|
initiateCall(payload) {
|