@vgroup/dialbox 0.3.44 → 0.3.45
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.
|
@@ -2948,7 +2948,8 @@ class DialboxComponent {
|
|
|
2948
2948
|
// console.log("WS Event Received:", incomingCallData);
|
|
2949
2949
|
// console.log("WS Event Received:", incomingCallData.data);
|
|
2950
2950
|
this.twilioService.conferenceCallInfo = incomingCallData;
|
|
2951
|
-
|
|
2951
|
+
let participants = [];
|
|
2952
|
+
this.incomingCallsList = !!incomingCallData.participants ? incomingCallData.participants.filter((item) => !item.isLeft) : [];
|
|
2952
2953
|
// incomingCallData.participants.length ? incomingCallData.participants.filter((item: any) => !item.isLeft) : [];
|
|
2953
2954
|
if (this.incomingCallsList.length > 0) {
|
|
2954
2955
|
// this.showIncomingCallPopup(incoming, data/
|