From 75999e9dcfdba9bc7bdb1d1d5626ba612ae31bdd Mon Sep 17 00:00:00 2001 From: Mark Baas Date: Tue, 4 Jan 2022 15:18:19 +0100 Subject: [PATCH] xesam:artist should be a list --- plugins/shortcuts/mpris.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/shortcuts/mpris.js b/plugins/shortcuts/mpris.js index 4be81da4..973feb51 100644 --- a/plugins/shortcuts/mpris.js +++ b/plugins/shortcuts/mpris.js @@ -67,7 +67,7 @@ function registerMPRIS(win) { 'mpris:length': secToMicro(songInfo.songDuration), 'mpris:artUrl': songInfo.imageSrc, 'xesam:title': songInfo.title, - 'xesam:artist': songInfo.artist, + 'xesam:artist': [songInfo.artist], 'mpris:trackid': '/' }; if (songInfo.album) data['xesam:album'] = songInfo.album;