Skip to content

Commit f91727e

Browse files
committed
Remove noisy comment
1 parent bf095b6 commit f91727e

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

backend/FwLite/FwLiteShared/Auth/OAuthClient.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -291,10 +291,6 @@ internal enum SilentAuthFailureOutcome
291291
_ => SilentAuthFailureOutcome.KeepCachedCredentials,
292292
};
293293

294-
//Classifies AcquireTokenInteractive failures by exception type, not message/code: MSAL's "oidc_failure"
295-
//is an unpublished string literal, whereas the inner HttpRequestException is a reliable offline signal.
296-
//A cancel is treated as a cancel regardless of connectivity; offline with a warm OIDC cache also surfaces
297-
//here, but the user has already seen the browser fail. null means rethrow (global handler surfaces it).
298294
internal static LoginResult? ClassifyInteractiveLoginFailure(Exception e) => e switch
299295
{
300296
MsalServiceException { InnerException: HttpRequestException } => LoginResult.Offline,

0 commit comments

Comments
 (0)