@vgroup/dialbox 0.4.193 → 0.4.195
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 +2 -1
- package/esm2020/lib/dialbox.component.mjs +2 -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
|
@@ -2197,6 +2197,7 @@ class CallProgressComponent {
|
|
|
2197
2197
|
this.cdr.detectChanges();
|
|
2198
2198
|
}
|
|
2199
2199
|
await this.getAllParticipants(this.twilioService.conferenceCallInfo.conferenceSid);
|
|
2200
|
+
return false;
|
|
2200
2201
|
}
|
|
2201
2202
|
async initiateCall(payload) {
|
|
2202
2203
|
return await this.extensionService.initiateCall(payload).toPromise();
|
|
@@ -3833,7 +3834,7 @@ class DialboxComponent {
|
|
|
3833
3834
|
// }
|
|
3834
3835
|
console.log(',,,,,', this.incomingCallnotification);
|
|
3835
3836
|
if (this.incomingCallnotification.data.content == "IncomingCall") {
|
|
3836
|
-
if (
|
|
3837
|
+
if (this.incomingCallnotification.data.data?.c2cBusiness == 'false') {
|
|
3837
3838
|
this.extensionService.getUserInformation(this.incomingCallnotification.data.data?.participantId).subscribe((resInfo) => {
|
|
3838
3839
|
console.log('uesrInfo', resInfo);
|
|
3839
3840
|
});
|