diff options
| author | theguymadmax <theguymadmax@proton.me> | 2026-02-14 00:32:07 -0500 |
|---|---|---|
| committer | theguymadmax <theguymadmax@proton.me> | 2026-02-14 10:06:50 -0500 |
| commit | 106f33227a20f1785b7a6c59ef6d4b68a5a8a880 (patch) | |
| tree | 63a2a216ee731d8fa46d9e2e4838ffaacbd4fe27 /Emby.Server.Implementations | |
| parent | 8b5914001d63de809122997a9bb6d9253bfef850 (diff) | |
Use artist images for music library thumbnail
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/Images/CollectionFolderImageProvider.cs | 2 |
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 }; |
