updated nuget

This commit is contained in:
Luke Pulverenti
2013-06-09 21:47:12 -04:00
parent 444927bb5e
commit a43fdb0c3d
4 changed files with 6 additions and 6 deletions

View File

@@ -341,7 +341,7 @@ namespace MediaBrowser.Server.Implementations.IO
if (e.ChangeType == WatcherChangeTypes.Changed)
{
// If the parent of an ignored path has a change event, ignore that too
if (tempIgnorePaths.Any(i => string.Equals(Path.GetDirectoryName(i), e.FullPath, StringComparison.OrdinalIgnoreCase)))
if (tempIgnorePaths.Any(i => string.Equals(Path.GetDirectoryName(i), e.FullPath, StringComparison.OrdinalIgnoreCase) || string.Equals(i, e.FullPath, StringComparison.OrdinalIgnoreCase)))
{
return;
}