diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-01-20 08:53:53 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-20 08:53:53 -0700 |
| commit | ee43b5117dca8bc652d06ca2955525677a21217b (patch) | |
| tree | 19b95a4dcf691165f26023b030571003f85cb4b8 /Emby.Server.Implementations | |
| parent | cd4587b43f9831a9529ddaed50ba4b9935fa061b (diff) | |
| parent | 5c3119cf02d731ab08484094a3eee9447cb444dd (diff) | |
Merge pull request #7217 from SenorSmartyPants/LibraryImages
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/Images/CollectionFolderImageProvider.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Images/CollectionFolderImageProvider.cs b/Emby.Server.Implementations/Images/CollectionFolderImageProvider.cs index 7958eb8f5..8a0e627b9 100644 --- a/Emby.Server.Implementations/Images/CollectionFolderImageProvider.cs +++ b/Emby.Server.Implementations/Images/CollectionFolderImageProvider.cs @@ -42,6 +42,10 @@ namespace Emby.Server.Implementations.Images { includeItemTypes = new[] { BaseItemKind.MusicAlbum }; } + else if (string.Equals(viewType, CollectionType.MusicVideos, StringComparison.Ordinal)) + { + includeItemTypes = new[] { BaseItemKind.MusicVideo }; + } else if (string.Equals(viewType, CollectionType.Books, StringComparison.Ordinal)) { includeItemTypes = new[] { BaseItemKind.Book, BaseItemKind.AudioBook }; |
