fix: "Recent" should sort by play_date, not starred_at

This commit is contained in:
Deluan 2020-03-30 19:34:44 -04:00
parent 301fa2a957
commit 1e0a79ebb7
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ const albumListParams = {
ALBUM_LIST_RANDOM: { sort: { field: 'random' } },
ALBUM_LIST_NEWEST: { sort: { field: 'created_at', order: 'DESC' } },
ALBUM_LIST_RECENT: {
sort: { field: 'starred_at', order: 'DESC' },
sort: { field: 'play_date', order: 'DESC' },
filter: { starred: true }
}
}