1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 13:39:10 +00:00

fix mpd_albumartist (#363)

This commit is contained in:
Jörg Mechnich 2017-01-31 02:25:33 +01:00 committed by Brenden Matthews
parent d7ee00adf0
commit 5878974441

View File

@ -265,6 +265,7 @@ namespace {
#define SETSTRING(a,b) \
if (b) a=b; else a="";
SETSTRING(mpd_info.artist, song->artist);
SETSTRING(mpd_info.albumartist, song->albumartist);
SETSTRING(mpd_info.album, song->album);
SETSTRING(mpd_info.title, song->title);
SETSTRING(mpd_info.date, song->date);