mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 01:15:55 +03:00
[GH-ISSUE #878] Sorting a playlist does not play songs in that order #1463
Labels
No labels
bug
documentation
enhancement
good first issue
help wanted
pull-request
question
third-party
third-party
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-player#1463
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 @ChristianPayne on GitHub (Nov 20, 2025).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/878
Describe the bug
When sorting a playlist by most recently added and playing, it does not play the songs in the sorted order. After the first song is played, it stops playing like the playlist is over.
To Reproduce
Expected behaviour
After playing the first song (the most recent) it should go to the second song in the list (the second most recent song).
Log and backtrace
N/A - This isn't an error but more a behavior bug.
Screenshots
N/A
Environment
Additional context
@ChristianPayne commented on GitHub (Nov 20, 2025):
It doesn't even look like sorting is an option through the Spotify Web API. Client-side sorting is what I see as implemented right now.
To fix this "issue", which may be more of a limitation of the API, we would need to walk the playlist as we see it and play every song in the order we see it. That seems like an anti pattern from how Spotify works as well as a ton of extra work just for this one feature.