add recently played songs carousel for jellyfin (#1494)

This commit is contained in:
jeffvli
2026-01-14 20:18:19 -08:00
parent c676f5b91f
commit a8604dd150
@@ -59,8 +59,8 @@ const HomeRoute = () => {
title: t('page.home.newlyAdded', { postProcess: 'sentenceCase' }),
},
[HomeItem.RECENTLY_PLAYED]: {
itemType: LibraryItem.ALBUM,
sortBy: AlbumListSort.RECENTLY_PLAYED,
itemType: isJellyfin ? LibraryItem.SONG : LibraryItem.ALBUM,
sortBy: isJellyfin ? SongListSort.RECENTLY_PLAYED : AlbumListSort.RECENTLY_PLAYED,
sortOrder: SortOrder.DESC,
title: t('page.home.recentlyPlayed', { postProcess: 'sentenceCase' }),
},