mirror of
https://github.com/Rigellute/spotify-tui.git
synced 2026-04-26 16:15:55 +03:00
[GH-ISSUE #176] Album track list (Title list) only returns 40 entries #89
Labels
No labels
bug
enhancement
good first issue
help wanted
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-tui#89
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @trames57 on GitHub (Dec 1, 2019).
Original GitHub issue: https://github.com/Rigellute/spotify-tui/issues/176
When retrieving an album after a search that has a large number of tracks, the track list for the album only returns 40 entries. I tried the Ctrl-d and it did not page to more tracks. Examples:
https://open.spotify.com/album/2SiUY7fgTpAxZk6H3Lya6t
https://open.spotify.com/album/40qIrKzta1myNjmhYKB9nf
Not sure it this is a limitation of the web API or not.
@Rigellute commented on GitHub (Dec 2, 2019):
The web api has a max limit of 50 and
spotify-tuiattempts to set the limit to whatever your screen can hold (but still has a max of 50 on large screens).Pagination (triggered by
ctrl-dis not yet implemented in all screens)