Update mRemoteNG/UI/Forms/OptionsPages/NotificationsPage.cs

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Dimitrij
2026-02-10 21:08:46 +00:00
committed by GitHub
parent 469ca48592
commit ba97933f33

View File

@@ -414,7 +414,8 @@ namespace mRemoteNG.UI.Forms.OptionsPages
FileName = "explorer.exe",
UseShellExecute = false
};
startInfo.ArgumentList.Add($"/select,\"{path}\"");
startInfo.ArgumentList.Add("/select,");
startInfo.ArgumentList.Add(path);
Process.Start(startInfo);
return true;
}