@vgroup/dialbox 0.4.127 → 0.4.128
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 +3 -2
- package/fesm2015/vgroup-dialbox.mjs +2 -1
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +2 -1
- 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
|
@@ -2121,9 +2121,11 @@ class CallProgressComponent {
|
|
|
2121
2121
|
conferenceId: this.conferenceId
|
|
2122
2122
|
});
|
|
2123
2123
|
console.log('Initial participantId:', this.addRes?.participantId);
|
|
2124
|
+
return true;
|
|
2124
2125
|
}
|
|
2125
2126
|
catch (e) {
|
|
2126
2127
|
console.error('Error adding initial participant:', e);
|
|
2128
|
+
return true;
|
|
2127
2129
|
}
|
|
2128
2130
|
}, 1000);
|
|
2129
2131
|
// Poll the status for 30-45 seconds
|
|
@@ -2133,7 +2135,6 @@ class CallProgressComponent {
|
|
|
2133
2135
|
console.log('test2');
|
|
2134
2136
|
this.endCall();
|
|
2135
2137
|
}
|
|
2136
|
-
return true;
|
|
2137
2138
|
}
|
|
2138
2139
|
catch (error) {
|
|
2139
2140
|
this.showRingAnimation = false;
|