@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.
|
@@ -2941,7 +2941,8 @@ class DialboxComponent {
|
|
|
2941
2941
|
// console.log("WS Event Received:", incomingCallData);
|
|
2942
2942
|
// console.log("WS Event Received:", incomingCallData.data);
|
|
2943
2943
|
this.twilioService.conferenceCallInfo = incomingCallData;
|
|
2944
|
-
|
|
2944
|
+
let participants = [];
|
|
2945
|
+
this.incomingCallsList = !!incomingCallData.participants ? incomingCallData.participants.filter((item) => !item.isLeft) : [];
|
|
2945
2946
|
// incomingCallData.participants.length ? incomingCallData.participants.filter((item: any) => !item.isLeft) : [];
|
|
2946
2947
|
if (this.incomingCallsList.length > 0) {
|
|
2947
2948
|
// this.showIncomingCallPopup(incoming, data/
|