Skip to content

Commit

Permalink
add useshell for core 3
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed May 26, 2020
1 parent c8b207d commit 6f46e59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GitHubNotifier/UserControls/RepositoryEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ private void OpenLink(string url)
{
try
{
Process.Start(url);
Process.Start(new ProcessStartInfo(url) {UseShellExecute = true});
}
catch (Exception exception)
{
Expand Down

0 comments on commit 6f46e59

Please sign in to comment.