From: Matt Ranostay Date: Sun, 9 Apr 2017 23:04:27 +0000 (-0700) Subject: metadata: switch from author to contributingArtist X-Git-Tag: dab_3.99.1~8 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=86affe07b3ec456c8c43651a7d009508dd64491a;p=apps%2Fmediaplayer.git metadata: switch from author to contributingArtist contributingArtist actually contains the artist data, and author is just the publisher generally. Bug-AGL: SPEC-535 Change-Id: Icd92fcc1df6c301e1f8f0faf5f09b0ddeaf728fd Signed-off-by: Matt Ranostay --- diff --git a/app/MediaPlayer.qml b/app/MediaPlayer.qml index 570af0f..37c2ab1 100644 --- a/app/MediaPlayer.qml +++ b/app/MediaPlayer.qml @@ -103,7 +103,7 @@ ApplicationWindow { Label { id: artist Layout.alignment: Layout.Center - text: player.metaData.author ? player.metaData.author : '' + text: player.metaData.contributingArtist ? player.metaData.contributingArtist : '' horizontalAlignment: Label.AlignHCenter verticalAlignment: Label.AlignVCenter font.pixelSize: title.font.pixelSize * 0.6