1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Switched media controls to follow other players style

This commit is contained in:
ferferga 2020-01-26 00:08:17 +01:00
parent 1458697bb2
commit 8f8ebc485d

View file

@ -160,8 +160,8 @@ define(['playbackManager', 'nowPlayingHelper', 'events', 'connectionManager'], f
if (navigator.mediaSession) {
navigator.mediaSession.metadata = new MediaMetadata({
title: title,
artist: artist,
title: artist,
artist: title,
album: album,
artwork: getImageUrls(item),
albumArtist: albumArtist,
@ -185,8 +185,8 @@ define(['playbackManager', 'nowPlayingHelper', 'events', 'connectionManager'], f
action: eventName,
isLocalPlayer: isLocalPlayer,
itemId: itemId,
title: title,
artist: artist,
title: artist,
artist: title,
album: album,
duration: duration,
position: currentTime,