Omnibus
Omnibus copied to clipboard
[BUG] Open Download Location breaks on a comma in path
Describe the bug
If download location contains a comma (e.g. R:\Comics, webcomics
, clicking the Open Download Location button opens the default Windows Explorer location (My Documents). The space after comma is not the problem, e.g. R:\Comics webcomics
opens correctly.
To Reproduce Steps to reproduce the behavior:
- In Settings, set download location so it contains a comma, e.g.
R:\Comics, webcomics
- Click on the Open Download Location button
Expected behavior Open Download Location opens download location.
Desktop (please complete the following information):
- OS: Windows 10
- 1.5.4
Additional context
Perhaps
Process.Start("explorer.exe", path);
should be
Process.Start("explorer.exe", $"\"{path}\"");
?