fix auto organize

This commit is contained in:
Luke Pulverenti
2015-09-06 12:02:41 -04:00
parent 04aa4965c6
commit b7af1213a4
3 changed files with 18 additions and 10 deletions

View File

@@ -183,7 +183,7 @@ namespace MediaBrowser.Controller.Entities
{
// Local trailer, special feature, theme video, etc.
// An item that belongs to another item but is not part of the Parent-Child tree
return !IsFolder && Parent == null && LocationType == LocationType.FileSystem;
return !IsFolder && ParentId == Guid.Empty && LocationType == LocationType.FileSystem;
}
}