mirror of
https://github.com/antebudimir/feishin.git
synced 2025-12-31 18:13:31 +00:00
Fix order for recently played and recently added
This commit is contained in:
parent
d203d287df
commit
6d037e4760
1 changed files with 2 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ const HomeRoute = () => {
|
|||
{
|
||||
limit: itemsPerPage,
|
||||
sortBy: AlbumListSort.RECENTLY_PLAYED,
|
||||
sortOrder: SortOrder.ASC,
|
||||
sortOrder: SortOrder.DESC,
|
||||
startIndex: pagination.recentlyPlayed * itemsPerPage,
|
||||
},
|
||||
{
|
||||
|
|
@ -63,7 +63,7 @@ const HomeRoute = () => {
|
|||
{
|
||||
limit: itemsPerPage,
|
||||
sortBy: AlbumListSort.RECENTLY_ADDED,
|
||||
sortOrder: SortOrder.ASC,
|
||||
sortOrder: SortOrder.DESC,
|
||||
startIndex: pagination.recentlyAdded * itemsPerPage,
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue