Updating the watcher list on video switching

This commit is contained in:
WolverinDEV 2020-08-08 01:06:20 +02:00
parent 4b7cd15a24
commit db36b52574

View file

@ -64,8 +64,9 @@ class VideoViewer {
if(this.currentVideoUrl === url)
return;
this.events.fire_async("notify_following", { watcherId: undefined });
this.events.fire_async("notify_video", { url: url });
this.events.fire("notify_following", { watcherId: undefined });
this.events.fire("notify_video", { url: url });
this.notifyWatcherList();
}
async open() {