Fixed a small compile error within the popout controller
parent
8223fbe543
commit
3727b11356
|
@ -24,7 +24,7 @@ class PopoutController extends EventControllerBase<"popout"> {
|
|||
private callbackControllerHello: (accepted: boolean | string) => void;
|
||||
|
||||
constructor() {
|
||||
super(new Registry<string>());
|
||||
super(new Registry());
|
||||
this.ipcRemoteId = Settings.instance.static(Settings.KEY_IPC_REMOTE_ADDRESS, "invalid");
|
||||
|
||||
this.ipcChannel = getIPCInstance().createChannel(this.ipcRemoteId, Settings.instance.static(kSettingIPCChannel, "invalid"));
|
||||
|
|
|
@ -64,8 +64,8 @@ class VideoViewer {
|
|||
if(this.currentVideoUrl === url)
|
||||
return;
|
||||
|
||||
this.events.fire("notify_following", { watcherId: undefined });
|
||||
this.events.fire("notify_video", { url: url });
|
||||
this.events.fire_async("notify_following", { watcherId: undefined });
|
||||
this.events.fire_async("notify_video", { url: url });
|
||||
}
|
||||
|
||||
async open() {
|
||||
|
|
Loading…
Reference in New Issue