Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
fix(authService): use proper update method
Browse files Browse the repository at this point in the history
  • Loading branch information
RWOverdijk authored Mar 27, 2018
1 parent 0f80003 commit 0283882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/authService.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class AuthService {
// in case auto refresh tokens are enabled
if (this.config.autoUpdateToken && this.authentication.getAccessToken() && this.authentication.getRefreshToken()) {
// we just need to check the status of the updated token we have in storage
this.authentication.updateAuthenticated();
this.updateAuthenticated();

return;
}
Expand Down

0 comments on commit 0283882

Please sign in to comment.