aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-22 14:16:30 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-22 14:17:31 -0500
commit02ad5527926a3081b828300546b6945978f7da04 (patch)
tree0b7aec5cf61d6ad6b6467524d1bf974be3d2d93d
parenteca02c7360e69fb2c2ef17427d6315587d625e3d (diff)
adjust default library monitor behavior
-rw-r--r--MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
index 97f082295..85ea8ec57 100644
--- a/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
+++ b/MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs
@@ -160,7 +160,7 @@ namespace MediaBrowser.Server.Implementations.IO
switch (ConfigurationManager.Configuration.EnableLibraryMonitor)
{
case AutoOnOff.Auto:
- return _appHost.SupportsLibraryMonitor;
+ return Environment.OSVersion.Platform == PlatformID.Win32NT;
case AutoOnOff.Enabled:
return true;
default: