fixes #353 - Path not found stopping library scan

pull/702/head
Luke Pulverenti 12 years ago
parent 92cd71143d
commit db607a618b

@ -536,6 +536,8 @@ namespace MediaBrowser.Server.Implementations.Library
Parallel.ForEach(files, f =>
{
try
{
if (f.Exists)
{
var item = ResolvePath(f, parent) as T;
@ -547,6 +549,7 @@ namespace MediaBrowser.Server.Implementations.Library
}
}
}
}
catch (Exception ex)
{
_logger.ErrorException("Error resolving path {0}", ex, f.FullName);

Loading…
Cancel
Save