Fixed movie and series resolution

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti 2012-08-28 14:16:35 -04:00
parent 578ec7c5a5
commit de74609784
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ namespace MediaBrowser.Movies.Resolvers
}
// Optimization to avoid running all these tests against VF's
if (args.Parent != null && args.Parent.IsVirtualFolder)
if (args.Parent != null && args.Parent.IsRoot)
{
return null;
}

View File

@ -16,7 +16,7 @@ namespace MediaBrowser.TV.Resolvers
if (args.IsDirectory)
{
// Optimization to avoid running all these tests against VF's
if (args.Parent != null && args.Parent.IsVirtualFolder)
if (args.Parent != null && args.Parent.IsRoot)
{
return null;
}