You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
privatevoidOpenUrl(stringurl){try{Process.Start(url);}catch{// hack because of this: https://github.com/dotnet/corefx/issues/10361if(RuntimeInformation.IsOSPlatform(OSPlatform.Windows)){url=url.Replace("&","^&");Process.Start(newProcessStartInfo("cmd",$"/c start {url}"){CreateNoWindow=true});}elseif(RuntimeInformation.IsOSPlatform(OSPlatform.Linux)){Process.Start("xdg-open",url);}elseif(RuntimeInformation.IsOSPlatform(OSPlatform.OSX)){Process.Start("open",url);}else{throw;}}}
Error Details
N/A
Screenshots
N/A
Desktop (please complete the following information):
OS: [e.g. Windows 10]
Version [e.g. 22]
Additional context
N/A
The text was updated successfully, but these errors were encountered:
Describe the bug
Trying to open
mystreamtimer://countdown/?mins=15
fails.Manager.OpenUrlAsync(args.context, "https://www.bing.com");
To Reproduce
Preferable
See @jamesmontemagno's stream
Stream Deck Extension for My Stream Timer
Expected behavior
Any url opens
Examples
mystreamtimer://countdown/?mins=15
mystreamtimer://countdown/?to=15:30
mystreamtimer://countdown/?topofhour
Added code from SO
Error Details
N/A
Screenshots
N/A
Desktop (please complete the following information):
Additional context
N/A
The text was updated successfully, but these errors were encountered: