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

Fix eslint errors for empty functions/constructors

This commit is contained in:
Bill Thornton 2022-03-01 10:57:48 -05:00
parent 8fefc22669
commit 9067b0e397
19 changed files with 50 additions and 37 deletions

View file

@ -1056,6 +1056,7 @@ class ChromecastPlayer {
}
getCurrentPlaylistItemId() {
// not supported?
}
setCurrentPlaylistItem() {

View file

@ -451,6 +451,7 @@ class SessionPlayer {
}
getRepeatMode() {
// not supported?
}
setQueueShuffleMode(mode) {
@ -460,6 +461,7 @@ class SessionPlayer {
}
getQueueShuffleMode() {
// not supported?
}
displayContent(options) {
@ -488,6 +490,7 @@ class SessionPlayer {
}
getCurrentPlaylistItemId() {
// not supported?
}
setCurrentPlaylistItem() {

View file

@ -256,11 +256,13 @@ class YoutubePlayer {
return this._currentSrc;
}
setSubtitleStreamIndex() {
// not supported
}
canSetAudioStreamIndex() {
return false;
}
setAudioStreamIndex() {
// not supported
}
// Save this for when playback stops, because querying the time at that point might return 0
currentTime(val) {