add library monitor error handling

pull/1154/head
Luke Pulverenti 9 years ago
parent b06d70e882
commit b0a14a191a

@ -105,9 +105,16 @@ namespace MediaBrowser.Server.Implementations.IO
_tempIgnoredPaths.TryRemove(path, out val);
if (refreshPath)
{
try
{
ReportFileSystemChanged(path);
}
catch (Exception ex)
{
Logger.ErrorException("Error in ReportFileSystemChanged for {0}", ex, path);
}
}
}
/// <summary>

Loading…
Cancel
Save