summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-09-13 18:39:40 +0200
committerGravatar waker <wakeroid@gmail.com>2012-09-13 18:39:40 +0200
commit4329eb94c148cb7c0dca339172b3ed46c1641291 (patch)
tree151b2db8c11f52d8da9dfd7507c799f3575484c6 /main.c
parent0d3e694f5380a59547a935d4f15acbdeb01f5263 (diff)
fixed resuming in shuffle-albums mode
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/main.c b/main.c
index 228e3ecb..466126df 100644
--- a/main.c
+++ b/main.c
@@ -676,6 +676,13 @@ restore_resume_state (void) {
streamer_lock (); // need to hold streamer thread to make the resume operation atomic
streamer_set_current_playlist (plt);
streamer_set_nextsong (track, paused ? 2 : 3);
+ if (pl_get_order () == PLAYBACK_ORDER_SHUFFLE_ALBUMS) {
+ playlist_t *p = plt_get_for_idx (plt);
+ if (p) {
+ plt_init_shuffle_albums (p, track);
+ plt_unref (p);
+ }
+ }
streamer_set_seek (pos);
streamer_unlock ();
}