aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2022-01-20 08:53:53 -0700
committerGitHub <noreply@github.com>2022-01-20 08:53:53 -0700
commitee43b5117dca8bc652d06ca2955525677a21217b (patch)
tree19b95a4dcf691165f26023b030571003f85cb4b8 /Emby.Server.Implementations
parentcd4587b43f9831a9529ddaed50ba4b9935fa061b (diff)
parent5c3119cf02d731ab08484094a3eee9447cb444dd (diff)
Merge pull request #7217 from SenorSmartyPants/LibraryImages
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/Images/CollectionFolderImageProvider.cs4
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 };