Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BrowseRouter/Services/DefaultBrowserService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class DefaultBrowserService(INotifyService notifier)
private const string _appID = "BrowseRouter";
private const string _appDescription = "Opens a different brower based on the URL";
private string AppIcon => App.ExePath + ",0";
private string AppOpenUrlCommand => $"{App.ExePath.Quote()} %1";
private string AppOpenUrlCommand => $"{App.ExePath.Quote()} {"%1".Quote()}";

private string AppKey => $"SOFTWARE\\{_appID}";
private string UrlKey => $"SOFTWARE\\Classes\\{_appID}URL";
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Version>0.16.0</Version>
<Version>0.17.0</Version>
<Product>BrowseRouter</Product>
<Copyright>EnduraByte LLC 2025</Copyright>
<!-- Reduces flagging as malware -->
Expand Down