@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.
@@ -2533,7 +2533,7 @@ class CallProgressComponent {
2533
2533
  isIncomingCall: false,
2534
2534
  isHold: false,
2535
2535
  isLeft: false,
2536
- isConference: false
2536
+ isConference: true
2537
2537
  };
2538
2538
  this.cdr.detectChanges();
2539
2539
  console.log(this.callData, 'this.callData5656');
@@ -2556,7 +2556,7 @@ class CallProgressComponent {
2556
2556
  });
2557
2557
  // Put current call on hold
2558
2558
  // this.heldCall = this.call;
2559
- // this.isCallOnHold = true;
2559
+ this.isCallOnHold = true;
2560
2560
  // this.heldCall.mute(true);
2561
2561
  // this.heldCall['parameters']['caller_name'] = { ...this.callData }
2562
2562
  // this.call=null
@@ -2570,7 +2570,7 @@ class CallProgressComponent {
2570
2570
  // this.call['callInfo'] = JSON.parse(JSON.stringify(this.callData));
2571
2571
  // Get the conference ID from the current call or use the stored one
2572
2572
  // const conferenceId = this.conferenceId;
2573
- if (this.conferenceId) {
2573
+ if (!this.conferenceId) {
2574
2574
  console.error("No conferenceId found for active call");
2575
2575
  swal("Error", "Cannot add participant: conference not found", "error");
2576
2576
  this.showRingAnimation = false;