Skip to content

Commit 504fb4a

Browse files
Display environment vars in upper case
1 parent 768ed4f commit 504fb4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Search/EnvironmentVariables.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ internal static Dictionary<string, string> LoadEnvironmentStringPaths()
5252
path = Path.IsPathFullyQualified(path) ? path : Path.GetFullPath(path);
5353

5454
// Variables are returned with a mixture of all upper/lower case.
55-
// Call ToLower() to make the results look consistent
56-
envStringPaths.Add(special.Key.ToString().ToLower(), path);
55+
// Call ToUpper() to make the results look consistent
56+
envStringPaths.Add(special.Key.ToString().ToUpper(), path);
5757
}
5858
}
5959

0 commit comments

Comments
 (0)