aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/app/app.component.ts')
-rw-r--r--ui/src/app/app.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts
index 2ae880b..a9b46a3 100644
--- a/ui/src/app/app.component.ts
+++ b/ui/src/app/app.component.ts
@@ -130,8 +130,8 @@ export class AppComponent implements AfterViewInit {
});
}
- retryDownload(key: string, quality: string, format: string) {
- this.addDownload(key, quality, format);
+ retryDownload(key: string, url: string, quality: string, format: string) {
+ this.addDownload(url, quality, format);
this.downloads.delById('done', [key]).subscribe();
}
bgstack15