mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix theme songs getting sent to remote player
This commit is contained in:
parent
c32aa0dab1
commit
68b6ae9083
7 changed files with 23 additions and 16 deletions
|
@ -518,6 +518,12 @@
|
|||
|
||||
self.play = function (options) {
|
||||
|
||||
if (options.enableRemotePlayers === false) {
|
||||
if (!currentPlayer.isLocalPlayer) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
doWithPlaybackValidation(currentPlayer, function () {
|
||||
if (typeof (options) === 'string') {
|
||||
options = { ids: [options] };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue