From 6c5a36587e46719e8bfb5b96d623baedac57b112 Mon Sep 17 00:00:00 2001 From: pointfeev Date: Tue, 30 May 2023 13:41:45 -0400 Subject: [PATCH] Update Diagnostics.cs --- CreamInstaller/Utility/Diagnostics.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CreamInstaller/Utility/Diagnostics.cs b/CreamInstaller/Utility/Diagnostics.cs index 7b42af5..35a9a89 100644 --- a/CreamInstaller/Utility/Diagnostics.cs +++ b/CreamInstaller/Utility/Diagnostics.cs @@ -42,5 +42,5 @@ internal static class Diagnostics internal static void OpenUrlInInternetBrowser(string url) => Process.Start(new ProcessStartInfo { FileName = url, UseShellExecute = true }); - internal static string BeautifyPath(this string path) => path is null ? null : Path.TrimEndingDirectorySeparator(Path.GetFullPath(path)); -} \ No newline at end of file + internal static string BeautifyPath(this string path) => path is null ? null : Path.TrimEndingDirectorySeparator(Path.GetFullPath(path)).ToLowerInvariant(); +}