aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortheguymadmax <theguymadmax@proton.me>2026-07-06 22:06:34 -0400
committertheguymadmax <theguymadmax@proton.me>2026-07-06 22:06:34 -0400
commitab0d0d1890fa44a827218c890bd5d7af23aacf51 (patch)
treef220f6b7e2257f219cbd8c7026f668106fc0fd4c
parente31f168e9bc132b4f830e39b0781cac550c08b85 (diff)
Fix artists being displayed with albums
-rw-r--r--Jellyfin.Api/Extensions/DtoExtensions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Extensions/DtoExtensions.cs b/Jellyfin.Api/Extensions/DtoExtensions.cs
index 09793553c2..36a8e197a2 100644
--- a/Jellyfin.Api/Extensions/DtoExtensions.cs
+++ b/Jellyfin.Api/Extensions/DtoExtensions.cs
@@ -24,7 +24,7 @@ public static class DtoExtensions
case CollectionType.tvshows:
return [BaseItemKind.Series];
case CollectionType.music:
- return [BaseItemKind.MusicAlbum, BaseItemKind.MusicArtist];
+ return [BaseItemKind.MusicAlbum];
case CollectionType.musicvideos:
return [BaseItemKind.MusicVideo];
case CollectionType.books: