Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Spotify] Update Playlist Song Limit to 100 Tracks #16572

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extensions/spotify-player/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Spotify Player Changelog

## [Improvement] - 2025-01-23

- Increase the number of songs you can view in a Playlist when using the `Show All Songs` command.

## [Generate Playlist Improvement - Artists] - 2024-12-03

- Modify the prompt so if the description contains "songs from: artist1, artist2, etc" it will only generate a playlist using those artists
Expand Down
2 changes: 1 addition & 1 deletion extensions/spotify-player/src/hooks/usePlaylistTracks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type UsePlaylistTracksProps = {
};
};

export function usePlaylistTracks({ playlistId = "", limit = 50, options }: UsePlaylistTracksProps) {
export function usePlaylistTracks({ playlistId = "", limit = 100, options }: UsePlaylistTracksProps) {
const { data, error, isLoading } = useCachedPromise(
(playlistId: string, limit: number) => getPlaylistTracks(playlistId, limit),
[playlistId, limit],
Expand Down
Loading