@vgroup/dialbox 0.2.28 → 0.2.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.
@@ -575,7 +575,7 @@ class ExtensionService {
575
575
  payload = Object.assign(Object.assign({}, payload), { proxy: ipAddressInfo.proxy.toString() });
576
576
  const httpOptions = { headers: new HttpHeaders(params) };
577
577
  const api1$ = this.http.post(`${environment.apiUrl}/utilities/ext/ur/initiate/call`, payload, httpOptions);
578
- const api2$ = this.http.post(`${environment.apiUrl}/ur/initiate/conference/call`, payload, httpOptions);
578
+ const api2$ = this.http.post(`${environment.apiUrl}/utilities/ext/ur/initiate/conference/call`, payload, httpOptions);
579
579
  return forkJoin([api1$, api2$]).pipe(catchError(error => throwError(() => error)));
580
580
  }), catchError(error => throwError(() => error)));
581
581
  }));