diff options
Diffstat (limited to '')
-rw-r--r-- | src/playlist_control.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/playlist_control.c b/src/playlist_control.c index f96db7f0e..4359611fd 100644 --- a/src/playlist_control.c +++ b/src/playlist_control.c @@ -158,6 +158,9 @@ nextSongInPlaylist(struct playlist *playlist) playlist->queue.single = false; /* no song after this one: stop playback */ stopPlaylist(playlist); + + /* reset "current song" */ + playlist->current = -1; } else { |