Browse Source

resolve tray icon not opening links on osx

Luke Pulverenti 8 years ago
parent
commit
d26a5086c1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Emby.Server.Core/ApplicationHost.cs

+ 2 - 1
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();
             }