summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/playback.c18
1 files changed, 7 insertions, 11 deletions
diff --git a/apps/playback.c b/apps/playback.c
index 1d9914ec31..de12916b66 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -1949,17 +1949,13 @@ static int audio_check_new_track(void)
1949 if (dir_skip) 1949 if (dir_skip)
1950 { 1950 {
1951 dir_skip = false; 1951 dir_skip = false;
1952 if (playlist_next_dir(ci.new_track)) 1952 /* regardless of the return value we need to rebuffer.
1953 { 1953 if it fails the old playlist will resume, else the
1954 ci.new_track = 0; 1954 next dir will start playing */
1955 audio_rebuffer(); 1955 playlist_next_dir(ci.new_track);
1956 goto skip_done; 1956 ci.new_track = 0;
1957 } 1957 audio_rebuffer();
1958 else 1958 goto skip_done;
1959 {
1960 LOGFQUEUE("audio >|= codec Q_CODEC_REQUEST_FAILED");
1961 return Q_CODEC_REQUEST_FAILED;
1962 }
1963 } 1959 }
1964 1960
1965 if (new_playlist) 1961 if (new_playlist)