Skip to content

Commit

Permalink
Fix for the 10 sec delay when opening links with notif enabled on Win10
Browse files Browse the repository at this point in the history
  • Loading branch information
Elihpmap committed Nov 28, 2024
1 parent 7f11265 commit f2d5eb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BrowseRouter/BrowserService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ public async Task LaunchAsync(string url, string windowTitle)
Log.Write($"Launching {path} with args \"{args} {uri.OriginalString}\"");

string name = GetAppName(path);
await notifier.NotifyAsync($"Opening {name}", $"URL: {url}");

Process.Start(path, $"{args} \"{uri.OriginalString}\"");

await notifier.NotifyAsync($"Opened {name}", $"URL: {url}");
}
catch (Exception e)
{
Expand Down

0 comments on commit f2d5eb4

Please sign in to comment.