mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
[PTRun][WindowWalker]Fix analyzer errors (#16887)
This commit is contained in:
@@ -26,7 +26,7 @@ namespace Microsoft.Plugin.WindowWalker.Components
|
||||
|
||||
foreach (SearchResult x in searchControllerResults)
|
||||
{
|
||||
if (x.Result.Process.Name.ToLower() == "explorer.exe" && x.Result.Process.IsShellProcess)
|
||||
if (x.Result.Process.Name.ToLower(System.Globalization.CultureInfo.InvariantCulture) == "explorer.exe" && x.Result.Process.IsShellProcess)
|
||||
{
|
||||
addExplorerInfo = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user