@vgroup/dialbox 0.3.28 → 0.3.30

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.
@@ -2569,7 +2569,7 @@ class CallProgressComponent {
2569
2569
  isIncomingCall: false,
2570
2570
  isHold: false,
2571
2571
  isLeft: false,
2572
- isConference: false
2572
+ isConference: true
2573
2573
  };
2574
2574
  this.cdr.detectChanges();
2575
2575
  console.log(this.callData, 'this.callData5656');
@@ -2592,7 +2592,7 @@ class CallProgressComponent {
2592
2592
  }));
2593
2593
  // Put current call on hold
2594
2594
  // this.heldCall = this.call;
2595
- // this.isCallOnHold = true;
2595
+ this.isCallOnHold = true;
2596
2596
  // this.heldCall.mute(true);
2597
2597
  // this.heldCall['parameters']['caller_name'] = { ...this.callData }
2598
2598
  // this.call=null
@@ -2606,7 +2606,7 @@ class CallProgressComponent {
2606
2606
  // this.call['callInfo'] = JSON.parse(JSON.stringify(this.callData));
2607
2607
  // Get the conference ID from the current call or use the stored one
2608
2608
  // const conferenceId = this.conferenceId;
2609
- if (this.conferenceId) {
2609
+ if (!this.conferenceId) {
2610
2610
  console.error("No conferenceId found for active call");
2611
2611
  swal("Error", "Cannot add participant: conference not found", "error");
2612
2612
  this.showRingAnimation = false;