aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Images
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2026-03-02 21:35:47 +0100
committerGitHub <noreply@github.com>2026-03-02 21:35:47 +0100
commit2f18e6e7f6cd40b6085cad1b0fd8802e640cac53 (patch)
tree31684aaff19448fb6f5820f29ec4cb9c264fdcad /Emby.Server.Implementations/Images
parentca0b2aa7a68527f32d7abea00de8fe4aa52b241c (diff)
parent106f33227a20f1785b7a6c59ef6d4b68a5a8a880 (diff)
Use artist images for music library thumbnail (#16240)HEADmaster
Diffstat (limited to 'Emby.Server.Implementations/Images')
-rw-r--r--Emby.Server.Implementations/Images/CollectionFolderImageProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Images/CollectionFolderImageProvider.cs b/Emby.Server.Implementations/Images/CollectionFolderImageProvider.cs
index a25373326..095934f89 100644
--- a/Emby.Server.Implementations/Images/CollectionFolderImageProvider.cs
+++ b/Emby.Server.Implementations/Images/CollectionFolderImageProvider.cs
@@ -40,7 +40,7 @@ namespace Emby.Server.Implementations.Images
includeItemTypes = new[] { BaseItemKind.Series };
break;
case CollectionType.music:
- includeItemTypes = new[] { BaseItemKind.MusicAlbum };
+ includeItemTypes = new[] { BaseItemKind.MusicArtist }; // Music albums usually don't have dedicated backdrops, so use artist instead
break;
case CollectionType.musicvideos:
includeItemTypes = new[] { BaseItemKind.MusicVideo };