diff options
Diffstat (limited to 'src/playlist.c')
-rw-r--r-- | src/playlist.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/playlist.c b/src/playlist.c index e1ab04344..a37ee76f3 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -1071,7 +1071,11 @@ void playPlaylistIfPlayerStopped(void) else playlist_errorCount++; - if (playlist_state == PLAYLIST_STATE_PLAY && ((playlist_stopOnError && error != PLAYER_ERROR_NOERROR) || error == PLAYER_ERROR_AUDIO || error == PLAYER_ERROR_SYSTEM || playlist_errorCount >= playlist.length)) { + if (playlist_state == PLAYLIST_STATE_PLAY + && ((playlist_stopOnError && error != PLAYER_ERROR_NOERROR) + || error == PLAYER_ERROR_AUDIO + || error == PLAYER_ERROR_SYSTEM + || playlist_errorCount >= playlist.length)) { stopPlaylist(stderr); } else if (playlist_noGoToNext) currentSongInPlaylist(stderr); |