From 91192bd1473d6a43eb27ea802ac6fbd451f28fb2 Mon Sep 17 00:00:00 2001 From: "Juan C. Muller" Date: Tue, 23 Nov 2010 15:17:43 -0500 Subject: Add support for art covers included in the XML playlist from pandora. See issue #56 --- src/ui.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/ui.c') diff --git a/src/ui.c b/src/ui.c index d115278..cef067d 100644 --- a/src/ui.c +++ b/src/ui.c @@ -599,6 +599,7 @@ void BarUiStartEventCmd (const BarSettings_t *settings, const char *type, "artist=%s\n" "title=%s\n" "album=%s\n" + "coverArt=%s\n" "stationName=%s\n" "pRet=%i\n" "pRetStr=%s\n" @@ -610,6 +611,7 @@ void BarUiStartEventCmd (const BarSettings_t *settings, const char *type, curSong == NULL ? "" : curSong->artist, curSong == NULL ? "" : curSong->title, curSong == NULL ? "" : curSong->album, + curSong == NULL ? "" : curSong->coverArt, curStation == NULL ? "" : curStation->name, pRet, PianoErrorToStr (pRet), -- cgit v1.2.3