From 86affe07b3ec456c8c43651a7d009508dd64491a Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Sun, 9 Apr 2017 16:04:27 -0700 Subject: 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 --- app/MediaPlayer.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit 1.2.3-korg