diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-21 23:11:23 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-21 23:11:23 -0500 |
| commit | d26a5086c1a802e5f6e57506fbed918b81c07d97 (patch) | |
| tree | ff26b45dbeff9b17510daaad3a8604fd96c0dffb | |
| parent | c0128a0a114f75b06c30896a69969a68a5128f22 (diff) | |
resolve tray icon not opening links on osx
| -rw-r--r-- | Emby.Server.Core/ApplicationHost.cs | 3 |
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(); } |
