Skip to content

Commit

Permalink
Merge pull request #539 from markbaas/mpris-artist-fix
Browse files Browse the repository at this point in the history
xesam:artist should be a list
  • Loading branch information
th-ch authored Jan 7, 2022
2 parents 81daded + 75999e9 commit ec4c2e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/shortcuts/mpris.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ec4c2e9

Please sign in to comment.