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

Fix queue when playing on remote device (partial) (#3381)

This commit is contained in:
AeRo 2024-10-17 03:27:10 +02:00 committed by GitHub
parent 2564902573
commit 8b3a02c727
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 138 additions and 7 deletions

View file

@ -493,6 +493,10 @@ export default function () {
function loadPlaylist(context, player) {
getPlaylistItems(player).then(function (items) {
if (items.length === 0) {
return;
}
let html = '';
let favoritesEnabled = true;
if (layoutManager.mobile) {