mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add constructor capitalization rule
This commit is contained in:
parent
8e2ea6812a
commit
ec0adb895b
43 changed files with 103 additions and 94 deletions
|
@ -2,7 +2,7 @@ import appSettings from '../../scripts/settings/appSettings';
|
|||
import * as userSettings from '../../scripts/settings/userSettings';
|
||||
import { playbackManager } from '../../components/playback/playbackmanager';
|
||||
import globalize from '../../scripts/globalize';
|
||||
import castSenderApiLoader from './castSenderApi';
|
||||
import CastSenderApi from './castSenderApi';
|
||||
import ServerConnections from '../../components/ServerConnections';
|
||||
import alert from '../../components/alert';
|
||||
import { PluginType } from '../../types/plugin.ts';
|
||||
|
@ -576,7 +576,7 @@ class ChromecastPlayer {
|
|||
this.isLocalPlayer = false;
|
||||
this.lastPlayerData = {};
|
||||
|
||||
new castSenderApiLoader().load().then(initializeChromecast.bind(this));
|
||||
new CastSenderApi().load().then(initializeChromecast.bind(this));
|
||||
}
|
||||
|
||||
tryPair() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue