aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library/ResolverHelper.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-16 16:13:45 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-16 16:13:45 -0400
commit1df5839eb06542c4190868741e214720051ef530 (patch)
treec838f57b1e852dd2faf83ee037c6ac25183f6d45 /MediaBrowser.Server.Implementations/Library/ResolverHelper.cs
parenta78ed5c61fef8506b85c5c8c4e2ed6972b3397f7 (diff)
factor mixed folder value into item id
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/ResolverHelper.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Library/ResolverHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/ResolverHelper.cs b/MediaBrowser.Server.Implementations/Library/ResolverHelper.cs
index 8b98a6944..1605db5a7 100644
--- a/MediaBrowser.Server.Implementations/Library/ResolverHelper.cs
+++ b/MediaBrowser.Server.Implementations/Library/ResolverHelper.cs
@@ -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))