File tree Expand file tree Collapse file tree
backend/FwLite/FwLiteShared/Auth Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments