Skip to content

Commit

Permalink
Order artist's Top Songs by play count (#410). (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
lymnyx authored Feb 3, 2024
1 parent ccb0e14 commit 933573b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/api/jellyfin/jellyfin-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ const getTopSongList = async (args: TopSongListArgs): Promise<SongListResponse>
IncludeItemTypes: 'Audio',
Limit: query.limit,
Recursive: true,
SortBy: 'CommunityRating,SortName',
SortBy: 'PlayCount,SortName',
SortOrder: 'Descending',
UserId: apiClientProps.server?.userId,
},
Expand Down

0 comments on commit 933573b

Please sign in to comment.