aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Playlists
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-10 23:29:35 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-10 23:29:35 -0500
commit7b22c0f48f7d93cc8d28d59911b632ea7cfe1418 (patch)
treee4ed95d8a25a2e033c976972644ce149aa81cb0b /MediaBrowser.Server.Implementations/Playlists
parentec63e13bbe3078ee1594a00e30224ffff22c6c64 (diff)
make project portable
Diffstat (limited to 'MediaBrowser.Server.Implementations/Playlists')
-rw-r--r--MediaBrowser.Server.Implementations/Playlists/ManualPlaylistsFolder.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/Playlists/ManualPlaylistsFolder.cs b/MediaBrowser.Server.Implementations/Playlists/ManualPlaylistsFolder.cs
index 9ea1612561..6a910a7bfe 100644
--- a/MediaBrowser.Server.Implementations/Playlists/ManualPlaylistsFolder.cs
+++ b/MediaBrowser.Server.Implementations/Playlists/ManualPlaylistsFolder.cs
@@ -7,6 +7,7 @@ using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Playlists;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Querying;
+using MediaBrowser.Model.Serialization;
namespace MediaBrowser.Server.Implementations.Playlists
{
@@ -27,6 +28,7 @@ namespace MediaBrowser.Server.Implementations.Playlists
return base.GetEligibleChildrenForRecursiveChildren(user).OfType<Playlist>();
}
+ [IgnoreDataMember]
public override bool IsHidden
{
get
@@ -35,6 +37,7 @@ namespace MediaBrowser.Server.Implementations.Playlists
}
}
+ [IgnoreDataMember]
public override string CollectionType
{
get { return MediaBrowser.Model.Entities.CollectionType.Playlists; }