fix: "Recent" should sort by play_date, not starred_at
This commit is contained in:
parent
301fa2a957
commit
1e0a79ebb7
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ const albumListParams = {
|
||||||
ALBUM_LIST_RANDOM: { sort: { field: 'random' } },
|
ALBUM_LIST_RANDOM: { sort: { field: 'random' } },
|
||||||
ALBUM_LIST_NEWEST: { sort: { field: 'created_at', order: 'DESC' } },
|
ALBUM_LIST_NEWEST: { sort: { field: 'created_at', order: 'DESC' } },
|
||||||
ALBUM_LIST_RECENT: {
|
ALBUM_LIST_RECENT: {
|
||||||
sort: { field: 'starred_at', order: 'DESC' },
|
sort: { field: 'play_date', order: 'DESC' },
|
||||||
filter: { starred: true }
|
filter: { starred: true }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue