From e7d82756766da085990c39de3fd3330075554df0 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 26 Jul 2013 16:24:00 +0300 Subject: [PATCH] audio/player: Fix not setting playlist items as playable All items in the playlist should have playable flag set otherwise they cannot be part of the playlist. --- profiles/audio/player.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiles/audio/player.c b/profiles/audio/player.c index a817b5479..ce5e75b50 100644 --- a/profiles/audio/player.c +++ b/profiles/audio/player.c @@ -1874,6 +1874,8 @@ struct media_item *media_player_set_playlist_item(struct media_player *mp, if (item == NULL) return NULL; + media_item_set_playable(item, true); + if (mp->track != item->metadata) { g_hash_table_unref(mp->track); mp->track = g_hash_table_ref(item->metadata); -- 2.11.0