From 85cf65eeee0ea498f4b631dc9d77d102ae46fcb0 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 10 May 2013 14:02:05 +0300 Subject: [PATCH] media: Fix not handling "Playlist" as possible value to LoopStatus --- profiles/audio/media.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/audio/media.c b/profiles/audio/media.c index 327b58e34..33847e5af 100644 --- a/profiles/audio/media.c +++ b/profiles/audio/media.c @@ -1482,7 +1482,7 @@ static const char *loop_status_to_repeat(const char *value) return "off"; else if (strcasecmp(value, "Track") == 0) return "singletrack"; - else if (strcasecmp(value, "Track") == 0) + else if (strcasecmp(value, "Playlist") == 0) return "alltracks"; return NULL; -- 2.47.3