add library monitor error handling

This commit is contained in:
Luke Pulverenti 2017-05-08 14:05:47 -04:00
parent 1dab9a60f4
commit d57a50af3b

View file

@ -294,6 +294,15 @@ namespace Emby.Server.Core.IO
return;
}
if (_environmentInfo.OperatingSystem != MediaBrowser.Model.System.OperatingSystem.Windows)
{
if (path.StartsWith("\\\\", StringComparison.OrdinalIgnoreCase) || path.StartsWith("smb://", StringComparison.OrdinalIgnoreCase))
{
// not supported
return;
}
}
// Already being watched
if (_fileSystemWatchers.ContainsKey(path))
{