factor mixed folder value into item id

This commit is contained in:
Luke Pulverenti
2013-08-16 16:13:45 -04:00
parent a78ed5c61f
commit 1df5839eb0
5 changed files with 34 additions and 10 deletions

View File

@@ -34,7 +34,7 @@ namespace MediaBrowser.Server.Implementations.Library
item.Parent = args.Parent;
}
item.Id = item.Path.GetMBId(item.GetType());
item.Id = item.Path.GetMBId(item.GetType(), item.IsInMixedFolder);
// If the resolver didn't specify this
if (string.IsNullOrEmpty(item.DisplayMediaType))

View File

@@ -244,6 +244,7 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers.Movies
if (item != null)
{
item.IsInMixedFolder = false;
movies.Add(item);
}
}