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

Update src/components/nowPlayingBar/nowPlayingBar.js

Co-authored-by: Bill Thornton <thornbill@users.noreply.github.com>
This commit is contained in:
Sky High 2023-10-25 23:05:08 +02:00 committed by Bill Thornton
parent b1161facc0
commit 7a98119b93

View file

@ -578,9 +578,7 @@ function updateNowPlayingInfo(state) {
item: item, item: item,
user: user user: user
}, options)) }, options))
.catch(function (err) { .catch(() => { /* no-op */ });
console.debug('[nowPlayingBar:updateNowPlayingInfo] click event reject', err);
});
}); });
}); });
} }