@arsedizioni/ars-utils 20.3.35 → 20.3.36

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.
@@ -2293,7 +2293,7 @@ class ClipperService {
2293
2293
  : new HttpHeaders()
2294
2294
  .set("Authorization", 'Bearer ' + oauthAccessToken)
2295
2295
  })
2296
- .pipe(finalize(() => this.loggingIn.set(false)), catchError(err => {
2296
+ .pipe(catchError(err => {
2297
2297
  return throwError(() => err);
2298
2298
  }), map((r) => {
2299
2299
  if (r.success) {
@@ -2338,7 +2338,7 @@ class ClipperService {
2338
2338
  confirmIdentity(code, flags = ClipperLoginFlags.None) {
2339
2339
  return this.httpClient
2340
2340
  .post(this._serviceUri + '/login/confirm/' + code + '/?flags=' + flags, {})
2341
- .pipe(finalize(() => this.loggingIn.set(false)), catchError((err) => {
2341
+ .pipe(catchError((err) => {
2342
2342
  return throwError(() => err);
2343
2343
  }), map((r) => {
2344
2344
  if (r.success) {