diff --git a/BrowseRouter/DefaultBrowserService.cs b/BrowseRouter/DefaultBrowserService.cs index 1f984cd..c570a7a 100644 --- a/BrowseRouter/DefaultBrowserService.cs +++ b/BrowseRouter/DefaultBrowserService.cs @@ -9,7 +9,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} %1".Quote(); + private string AppOpenUrlCommand => $"{App.ExePath.Quote()} %1"; private string AppKey => $"SOFTWARE\\{_appID}"; private string UrlKey => $"SOFTWARE\\Classes\\{_appID}URL"; @@ -129,4 +129,4 @@ private void Unregister() Actions.TryRun(() => Registry.CurrentUser.DeleteSubKeyTree(UrlKey)); Log.Write("Done"); } -} \ No newline at end of file +} diff --git a/Directory.Build.props b/Directory.Build.props index 1902c17..7cafc16 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -6,7 +6,7 @@ enable enable latest - 0.13.1 + 0.13.2 BrowseRouter EnduraByte LLC 2024