add library monitor error handling

pull/702/head
Luke Pulverenti 8 years ago
parent c335521859
commit ab79129d0c

@ -106,7 +106,14 @@ namespace MediaBrowser.Server.Implementations.IO
if (refreshPath) if (refreshPath)
{ {
ReportFileSystemChanged(path); try
{
ReportFileSystemChanged(path);
}
catch (Exception ex)
{
Logger.ErrorException("Error in ReportFileSystemChanged for {0}", ex, path);
}
} }
} }

Loading…
Cancel
Save