mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 15:06:26 +00:00
OpenBrowser returns false if it was unsuccessful
This commit is contained in:
parent
89c33bc728
commit
22d800d487
@ -1,3 +1,4 @@
|
|||||||
|
using System;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
@ -5,7 +6,9 @@ namespace SpotifyAPI.Web.Auth
|
|||||||
{
|
{
|
||||||
internal static class AuthUtil
|
internal static class AuthUtil
|
||||||
{
|
{
|
||||||
public static void OpenBrowser(string url)
|
public static bool OpenBrowser(string url)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
#if NETSTANDARD2_0
|
#if NETSTANDARD2_0
|
||||||
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
||||||
@ -25,6 +28,12 @@ namespace SpotifyAPI.Web.Auth
|
|||||||
url = url.Replace("&", "^&");
|
url = url.Replace("&", "^&");
|
||||||
Process.Start(new ProcessStartInfo("cmd", $"/c start {url}"));
|
Process.Start(new ProcessStartInfo("cmd", $"/c start {url}"));
|
||||||
#endif
|
#endif
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user