From ad0eab880c4a893f174141050d4d53e9f5f35868 Mon Sep 17 00:00:00 2001 From: Alex Shnitman Date: Thu, 23 Jun 2022 23:30:09 +0300 Subject: angular 13 and bootstrap 5 --- ui/src/app/downloads.service.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'ui/src/app/downloads.service.ts') diff --git a/ui/src/app/downloads.service.ts b/ui/src/app/downloads.service.ts index 25bcccc..8580a70 100644 --- a/ui/src/app/downloads.service.ts +++ b/ui/src/app/downloads.service.ts @@ -42,13 +42,13 @@ export class DownloadsService { data[0].forEach(entry => this.queue.set(...entry)); this.done.clear(); data[1].forEach(entry => this.done.set(...entry)); - this.queueChanged.next(); - this.doneChanged.next(); + this.queueChanged.next(null); + this.doneChanged.next(null); }); socket.fromEvent('added').subscribe((strdata: string) => { let data: Download = JSON.parse(strdata); this.queue.set(data.id, data); - this.queueChanged.next(); + this.queueChanged.next(null); }); socket.fromEvent('updated').subscribe((strdata: string) => { let data: Download = JSON.parse(strdata); @@ -61,18 +61,18 @@ export class DownloadsService { let data: Download = JSON.parse(strdata); this.queue.delete(data.id); this.done.set(data.id, data); - this.queueChanged.next(); - this.doneChanged.next(); + this.queueChanged.next(null); + this.doneChanged.next(null); }); socket.fromEvent('canceled').subscribe((strdata: string) => { let data: string = JSON.parse(strdata); this.queue.delete(data); - this.queueChanged.next(); + this.queueChanged.next(null); }); socket.fromEvent('cleared').subscribe((strdata: string) => { let data: string = JSON.parse(strdata); this.done.delete(data); - this.doneChanged.next(); + this.doneChanged.next(null); }); } -- cgit