aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-23 23:50:45 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-23 23:50:45 -0500
commit1af651bc56025935cebe2762d6f36be41530eba1 (patch)
tree685083558027d3123bd3b9f6a4efa886a574bf26 /MediaBrowser.Server.Implementations/Library/LibraryManager.cs
parent86a9df53f28d54c9668d66f134d3d73220e0411d (diff)
add Add to collection buttons
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/LibraryManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Library/LibraryManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
index b28c98728..1306188da 100644
--- a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
+++ b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
@@ -1646,7 +1646,7 @@ namespace MediaBrowser.Server.Implementations.Library
var id = GetNewItemId("7_namedview_" + name + user.Id.ToString("N") + parentId, typeof(UserView));
- var path = BaseItem.GetInternalMetadataPathForId(id);
+ var path = Path.Combine(ConfigurationManager.ApplicationPaths.InternalMetadataPath, "views", "specialviews", id.ToString("N"));
var item = GetItemById(id) as UserView;