Skip to content

Commit

Permalink
Use startIndex in Jellyfin getPlaylistSongList (#449)
Browse files Browse the repository at this point in the history
  • Loading branch information
SlyFabi authored Jan 22, 2024
1 parent 2095ff6 commit dccccce
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 @@ -538,7 +538,7 @@ const getPlaylistSongList = async (args: PlaylistSongListArgs): Promise<SongList
Limit: query.limit,
SortBy: query.sortBy ? songListSortMap.jellyfin[query.sortBy] : undefined,
SortOrder: query.sortOrder ? sortOrderMap.jellyfin[query.sortOrder] : undefined,
StartIndex: 0,
StartIndex: query.startIndex,
UserId: apiClientProps.server?.userId,
},
});
Expand Down

1 comment on commit dccccce

@vercel
Copy link

@vercel vercel bot commented on dccccce Jan 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

feishin – ./

feishin-git-development-jeffvli.vercel.app
feishin-jeffvli.vercel.app
feishin.vercel.app

Please sign in to comment.