diff options
author | Max Kellermann <max@duempel.org> | 2010-03-28 19:31:47 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-03-28 19:31:47 +0200 |
commit | e9beea072d17ec01a124c189c42df1a1350a4106 (patch) | |
tree | 7334654ded3a281e53546671f9fcb8e4b1857545 /src/playlist.c | |
parent | e69bb3b337c8f805302a4ba9e46c7bc36d8df80c (diff) | |
parent | d612e5e0ab27b93fcfdcf25eb3014ea4e17cd41c (diff) | |
download | mpd-e9beea072d17ec01a124c189c42df1a1350a4106.tar.gz mpd-e9beea072d17ec01a124c189c42df1a1350a4106.tar.xz mpd-e9beea072d17ec01a124c189c42df1a1350a4106.zip |
Merge release 0.15.9 from branch 'v0.15.x'
Conflicts:
NEWS
configure.ac
src/cue/cue_tag.c
src/decoder/mpcdec_decoder_plugin.c
src/player_thread.c
Diffstat (limited to '')
-rw-r--r-- | src/playlist.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/playlist.c b/src/playlist.c index 916613096..e708ce00f 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -139,7 +139,8 @@ playlist_update_queued_song(struct playlist *playlist, const struct song *prev) ? queue_next_order(&playlist->queue, playlist->current) : 0; - if (next_order == 0 && playlist->queue.random) { + if (next_order == 0 && playlist->queue.random && + !playlist->queue.single) { /* shuffle the song order again, so we get a different order each time the playlist is played completely */ |