From b66a8c518cbaa660ca3b9d18a1d071b144e5a2ab Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Mon, 22 Sep 2014 17:16:26 +0000 Subject: added 'album artist' field support (patch by Dmitry Misharov) git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@4509 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/mpris/mpris1/playerobject.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/plugins/General/mpris/mpris1/playerobject.cpp') diff --git a/src/plugins/General/mpris/mpris1/playerobject.cpp b/src/plugins/General/mpris/mpris1/playerobject.cpp index 27c9ca9fa..ed1b499c3 100644 --- a/src/plugins/General/mpris/mpris1/playerobject.cpp +++ b/src/plugins/General/mpris/mpris1/playerobject.cpp @@ -135,6 +135,7 @@ QVariantMap PlayerObject::GetMetadata() map.insert("arturl", MetaDataManager::instance()->getCoverPath(m_core->metaData(Qmmp::URL))); map.insert("title", m_core->metaData(Qmmp::TITLE)); map.insert("artist", m_core->metaData(Qmmp::ARTIST)); + map.insert("albumartist", m_core->metaData(Qmmp::ALBUMARTIST)); map.insert("album", m_core->metaData(Qmmp::ALBUM)); map.insert("tracknumber", m_core->metaData(Qmmp::TRACK)); map.insert("time", (quint32)m_core->totalTime()/1000); -- cgit v1.2.3-13-gbd6f