Skip to content

Commit

Permalink
fix: AuthService.reauth() subsequent calls fix
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc committed Aug 7, 2019
1 parent b27003d commit d8d2432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class AuthService {
return throwError(error);
}
}),
tap(() => () => this.isRefreshingToken = false),
tap(() => this.isRefreshingToken = false),
map(({ authToken }) => authToken),
tap(authToken => this.authToken.next(authToken)),
);
Expand Down

0 comments on commit d8d2432

Please sign in to comment.