aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/app')
-rw-r--r--ui/src/app/app.component.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts
index f25bb5e..8b668c6 100644
--- a/ui/src/app/app.component.ts
+++ b/ui/src/app/app.component.ts
@@ -87,6 +87,7 @@ export class AppComponent implements AfterViewInit {
retryDownload(key: string, quality:string){
this.addDownload(key, quality);
+ this.downloads.delById('done', [key]).subscribe();
}
delDownload(where: string, id: string) {
bgstack15