Skip to content

Commit 1a2f455

Browse files
committed
Set _currentAuthState
- Remove call to Logout when initializing authentication state - Logout when a valid access token cannot be retrieved
1 parent 5988637 commit 1a2f455

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

MauiHybridAuth/MauiHybridAuth/Services/MauiAuthenticationStateProvider.cs

+7-10
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ public override Task<AuthenticationState> GetAuthenticationStateAsync()
3333
return _currentAuthState;
3434
}
3535

36-
var authStateTask = CreateAuthenticationStateFromSecureStorageAsync();
37-
NotifyAuthenticationStateChanged(authStateTask);
36+
_currentAuthState = CreateAuthenticationStateFromSecureStorageAsync();
37+
NotifyAuthenticationStateChanged(_currentAuthState);
3838

39-
return authStateTask;
39+
return _currentAuthState;
4040
}
4141

4242
public async Task<AccessTokenInfo?> GetAccessTokenInfoAsync()
@@ -46,6 +46,7 @@ public override Task<AuthenticationState> GetAuthenticationStateAsync()
4646
return _accessToken;
4747
}
4848

49+
Logout();
4950
return null;
5051
}
5152

@@ -60,10 +61,10 @@ public void Logout()
6061

6162
public Task LogInAsync(LoginRequest loginModel)
6263
{
63-
var loginTask = LogInAsyncCore(loginModel);
64-
NotifyAuthenticationStateChanged(loginTask);
64+
_currentAuthState = LogInAsyncCore(loginModel);
65+
NotifyAuthenticationStateChanged(_currentAuthState);
6566

66-
return loginTask;
67+
return _currentAuthState;
6768

6869
async Task<AuthenticationState> LogInAsyncCore(LoginRequest loginModel)
6970
{
@@ -121,10 +122,6 @@ private async Task<AuthenticationState> CreateAuthenticationStateFromSecureStora
121122
authenticatedUser = CreateAuthenticatedUser(_accessToken!.Email);
122123
LoginStatus = LoginStatus.Success;
123124
}
124-
else
125-
{
126-
Logout();
127-
}
128125

129126
return new AuthenticationState(authenticatedUser);
130127
}

0 commit comments

Comments
 (0)