We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d20341d commit a8a6750Copy full SHA for a8a6750
1 file changed
Rally.RestApi/Auth/ApiAuthManager.cs
@@ -703,7 +703,6 @@ private void UpdateAuthenticationState()
703
{
704
case RallyRestApi.AuthenticationResult.Authenticated:
705
AuthenticationStateChange.Invoke(Api.AuthenticationState, Api);
706
- LoginDetails.SaveToDisk();
707
break;
708
case RallyRestApi.AuthenticationResult.PendingSSO:
709
case RallyRestApi.AuthenticationResult.NotAuthorized:
@@ -713,6 +712,9 @@ private void UpdateAuthenticationState()
713
712
throw new NotImplementedException();
714
}
715
+
716
+ if (Api.AuthenticationState == RallyRestApi.AuthenticationResult.Authenticated)
717
+ LoginDetails.SaveToDisk();
718
719
#endregion
720
0 commit comments