mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 06:27:09 +01:00
Fix order for recently played and recently added
This commit is contained in:
parent
d203d287df
commit
6d037e4760
@ -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…
Reference in New Issue
Block a user