@@ -33,10 +33,10 @@ public override Task<AuthenticationState> GetAuthenticationStateAsync()
33
33
return _currentAuthState ;
34
34
}
35
35
36
- var authStateTask = CreateAuthenticationStateFromSecureStorageAsync ( ) ;
37
- NotifyAuthenticationStateChanged ( authStateTask ) ;
36
+ _currentAuthState = CreateAuthenticationStateFromSecureStorageAsync ( ) ;
37
+ NotifyAuthenticationStateChanged ( _currentAuthState ) ;
38
38
39
- return authStateTask ;
39
+ return _currentAuthState ;
40
40
}
41
41
42
42
public async Task < AccessTokenInfo ? > GetAccessTokenInfoAsync ( )
@@ -46,6 +46,7 @@ public override Task<AuthenticationState> GetAuthenticationStateAsync()
46
46
return _accessToken ;
47
47
}
48
48
49
+ Logout ( ) ;
49
50
return null ;
50
51
}
51
52
@@ -60,10 +61,10 @@ public void Logout()
60
61
61
62
public Task LogInAsync ( LoginRequest loginModel )
62
63
{
63
- var loginTask = LogInAsyncCore ( loginModel ) ;
64
- NotifyAuthenticationStateChanged ( loginTask ) ;
64
+ _currentAuthState = LogInAsyncCore ( loginModel ) ;
65
+ NotifyAuthenticationStateChanged ( _currentAuthState ) ;
65
66
66
- return loginTask ;
67
+ return _currentAuthState ;
67
68
68
69
async Task < AuthenticationState > LogInAsyncCore ( LoginRequest loginModel )
69
70
{
@@ -121,10 +122,6 @@ private async Task<AuthenticationState> CreateAuthenticationStateFromSecureStora
121
122
authenticatedUser = CreateAuthenticatedUser ( _accessToken ! . Email ) ;
122
123
LoginStatus = LoginStatus . Success ;
123
124
}
124
- else
125
- {
126
- Logout ( ) ;
127
- }
128
125
129
126
return new AuthenticationState ( authenticatedUser ) ;
130
127
}
0 commit comments