Explorar el Código

adjust default library monitor behavior

Luke Pulverenti hace 9 años
padre
commit
02ad552792
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      MediaBrowser.Server.Implementations/IO/LibraryMonitor.cs

+ 1 - 1
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: