mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 17:35:50 +03:00
[GH-ISSUE #669] Queue Duplication and Playback Stops When Playing Songs via Search in Spotify-Player #390
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#390
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 @dark-wizz on GitHub (Jan 26, 2025).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/669
Describe the bug
When searching for and playing a song using spotify-player, the song gets duplicated in the queue multiple times (up to 10 times). Additionally, when hitting the 'n' key to skip to the next track, playback stops instead of advancing to the next song. This issue only occurs when initiating playback via spotify-player. If playback is initiated from a mobile device, the queue and skipping('n') functionality work as expected. I tried this with different device such as spotify-player, librespot, spotify mobile, spotify desktop butsame result.
To Reproduce
Expected behaviour
The song should play once without being duplicated in the queue.
Skipping to the next song should continue play the next recommended song for me based on the search like the mobile app's client.
Log and backtrace
spotify-player-25-01-26-22-55.log
Screenshots

Environment
Additional context
Add any other context about the problem here.
@cdslayallday commented on GitHub (Jan 27, 2025):
yooooo how do i add the album/track picture on my spotify-player tui???
@dark-wizz commented on GitHub (Jan 27, 2025):
@cdslayallday
build the application using image feature
cargo install spotify_player --features imagedocumentation: https://github.com/aome510/spotify-player?tab=readme-ov-file#image
@aome510 commented on GitHub (Feb 4, 2025):
This kind of behaviour is expected because playing a song from search means starting a playback consisting of only that song. The reason for playback stops is because you have
repeatset tooff.In other words, not really a bug, but a feature request to play similar songs (recommendations?) when the current playback ends.
@dark-wizz commented on GitHub (Feb 4, 2025):
yes @aome510, thats what i exactly i want. tha'ts the only thing i missing in this TUI comparing to the spotify official client.