aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-21 23:11:23 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-21 23:11:23 -0500
commitd26a5086c1a802e5f6e57506fbed918b81c07d97 (patch)
treeff26b45dbeff9b17510daaad3a8604fd96c0dffb
parentc0128a0a114f75b06c30896a69969a68a5128f22 (diff)
resolve tray icon not opening links on osx
-rw-r--r--Emby.Server.Core/ApplicationHost.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Core/ApplicationHost.cs b/Emby.Server.Core/ApplicationHost.cs
index a0a7416e7..8af2c9f91 100644
--- a/Emby.Server.Core/ApplicationHost.cs
+++ b/Emby.Server.Core/ApplicationHost.cs
@@ -1583,7 +1583,8 @@ namespace Emby.Server.Core
public void LaunchUrl(string url)
{
- if (EnvironmentInfo.OperatingSystem != MediaBrowser.Model.System.OperatingSystem.Windows)
+ if (EnvironmentInfo.OperatingSystem != MediaBrowser.Model.System.OperatingSystem.Windows &&
+ EnvironmentInfo.OperatingSystem != MediaBrowser.Model.System.OperatingSystem.OSX)
{
throw new NotImplementedException();
}