diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-06-29 15:10:58 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-06-29 15:10:58 -0400 |
| commit | dcaf8356e6400543e10ff2ee89fc9b3bdf97ef77 (patch) | |
| tree | bb909bd61ad93d4f3c430ddd3b7bd776f4c227d0 /MediaBrowser.Controller/Collections/ManualCollectionsFolder.cs | |
| parent | a0910fc280bc99ae9e3080ba42fdb81e340ddee1 (diff) | |
update inherited images
Diffstat (limited to 'MediaBrowser.Controller/Collections/ManualCollectionsFolder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Collections/ManualCollectionsFolder.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Collections/ManualCollectionsFolder.cs b/MediaBrowser.Controller/Collections/ManualCollectionsFolder.cs index d2d28e504..160a788f1 100644 --- a/MediaBrowser.Controller/Collections/ManualCollectionsFolder.cs +++ b/MediaBrowser.Controller/Collections/ManualCollectionsFolder.cs @@ -1,4 +1,5 @@ using MediaBrowser.Controller.Entities; +using MediaBrowser.Model.Serialization; namespace MediaBrowser.Controller.Collections { @@ -18,11 +19,21 @@ namespace MediaBrowser.Controller.Collections } } + [IgnoreDataMember] + public override bool SupportsInheritedParentImages + { + get + { + return false; + } + } + public bool IsHiddenFromUser(User user) { return !ConfigurationManager.Configuration.DisplayCollectionsView; } + [IgnoreDataMember] public override string CollectionType { get { return Model.Entities.CollectionType.BoxSets; } |
