We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b44e525 commit d8b11c2Copy full SHA for d8b11c2
Flow.Launcher/Helper/ExceptionHelper.cs
@@ -39,6 +39,6 @@ internal static bool IsRecoverableDwmCompositionException(Exception exception)
39
// Check for common DWM composition changed patterns in the stack trace
40
var stackTrace = comException.StackTrace;
41
return !string.IsNullOrEmpty(stackTrace) &&
42
- stackTrace.Contains("DwmCompositionChanged");
+ stackTrace.Contains("DwmCompositionChanged", StringComparison.OrdinalIgnoreCase);
43
}
44
0 commit comments