diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-16 17:03:11 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-16 17:03:11 -0500 |
| commit | 51d00cf3fd123534995153e4fbc7a3c7a0a8a5c3 (patch) | |
| tree | 47c258c576fea9ef3404f901de93fd01888fc50f /MediaBrowser.Controller/Entities/UserView.cs | |
| parent | 79b2415fdf9684ba8e80863d664cd7e9cc57fff4 (diff) | |
update queries
Diffstat (limited to 'MediaBrowser.Controller/Entities/UserView.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/UserView.cs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/MediaBrowser.Controller/Entities/UserView.cs b/MediaBrowser.Controller/Entities/UserView.cs index ebd97e5c8..ef54626cc 100644 --- a/MediaBrowser.Controller/Entities/UserView.cs +++ b/MediaBrowser.Controller/Entities/UserView.cs @@ -132,11 +132,6 @@ namespace MediaBrowser.Controller.Entities CollectionType.Playlists }; - if (!ConfigurationManager.Configuration.EnableSharedCollectionViewImage) - { - standaloneTypes.Add(CollectionType.BoxSets); - } - var collectionFolder = folder as ICollectionFolder; if (collectionFolder == null) @@ -172,7 +167,9 @@ namespace MediaBrowser.Controller.Entities CollectionType.Books, CollectionType.MusicVideos, CollectionType.HomeVideos, - CollectionType.Photos + CollectionType.Photos, + CollectionType.Music, + CollectionType.BoxSets }; return types.Contains(viewType ?? string.Empty, StringComparer.OrdinalIgnoreCase); |
