diff options
-rw-r--r-- | src/playlist.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/playlist.c b/src/playlist.c index 0a32ce98b..7f44823c1 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -608,8 +608,6 @@ nextSongInPlaylist(struct playlist *playlist) assert(!queue_is_empty(&playlist->queue)); assert(queue_valid_order(&playlist->queue, playlist->current)); - syncPlaylistWithQueue(playlist); - playlist->stop_on_error = false; /* determine the next song from the queue's order list */ @@ -819,8 +817,6 @@ void previousSongInPlaylist(struct playlist *playlist) if (!playlist->playing) return; - syncPlaylistWithQueue(playlist); - if (diff && getPlayerElapsedTime() > PLAYLIST_PREV_UNLESS_ELAPSED) { /* re-start playing the current song (just like the "prev" button on CD players) */ |