mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add mediaType to isPlaying for remote players.
This commit is contained in:
parent
201685a60b
commit
dbf1d4f811
2 changed files with 4 additions and 4 deletions
|
@ -931,9 +931,9 @@ class ChromecastPlayer {
|
||||||
return state.VolumeLevel == null ? 100 : state.VolumeLevel;
|
return state.VolumeLevel == null ? 100 : state.VolumeLevel;
|
||||||
}
|
}
|
||||||
|
|
||||||
isPlaying() {
|
isPlaying(mediaType) {
|
||||||
const state = this.lastPlayerData || {};
|
const state = this.lastPlayerData || {};
|
||||||
return state.NowPlayingItem != null;
|
return state.NowPlayingItem != null && (state.NowPlayingItem.MediaType === mediaType || !mediaType);
|
||||||
}
|
}
|
||||||
|
|
||||||
isPlayingVideo() {
|
isPlayingVideo() {
|
||||||
|
|
|
@ -466,9 +466,9 @@ class SessionPlayer {
|
||||||
sendCommandByName(this, 'DisplayContent', options);
|
sendCommandByName(this, 'DisplayContent', options);
|
||||||
}
|
}
|
||||||
|
|
||||||
isPlaying() {
|
isPlaying(mediaType) {
|
||||||
const state = this.lastPlayerData || {};
|
const state = this.lastPlayerData || {};
|
||||||
return state.NowPlayingItem != null;
|
return state.NowPlayingItem != null && (state.NowPlayingItem.MediaType === mediaType || !mediaType);
|
||||||
}
|
}
|
||||||
|
|
||||||
isPlayingVideo() {
|
isPlayingVideo() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue