update queries

This commit is contained in:
Luke Pulverenti
2015-11-16 17:03:11 -05:00
parent 79b2415fdf
commit 51d00cf3fd
3 changed files with 7 additions and 10 deletions

View File

@@ -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);