mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Update SyncPlay references to use plugin
This commit is contained in:
parent
641a7c0915
commit
732ef8fdad
9 changed files with 106 additions and 64 deletions
|
@ -12,6 +12,7 @@ class SyncPlayPlugin implements Plugin {
|
|||
id: string;
|
||||
type: string;
|
||||
priority: number;
|
||||
instance: typeof SyncPlay;
|
||||
|
||||
constructor() {
|
||||
this.name = 'SyncPlay Plugin';
|
||||
|
@ -21,6 +22,8 @@ class SyncPlayPlugin implements Plugin {
|
|||
this.type = PluginType.SyncPlay;
|
||||
this.priority = 1;
|
||||
|
||||
this.instance = SyncPlay;
|
||||
|
||||
this.init();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue