diff --git a/ui/src/app/app.component.html b/ui/src/app/app.component.html
index 74da172..c0957af 100644
--- a/ui/src/app/app.component.html
+++ b/ui/src/app/app.component.html
@@ -122,7 +122,7 @@
{{ download.value.title }}
-
+
|
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();
}
|