浏览代码

resolve tray icon not opening links on osx

Luke Pulverenti 8 年之前
父节点
当前提交
d26a5086c1
共有 1 个文件被更改,包括 2 次插入1 次删除
  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();
             }