From 4eb3916546602d2cb25e06de26ffb8b8683b46d0 Mon Sep 17 00:00:00 2001 From: Erazor2 Date: Tue, 4 Jan 2022 22:05:33 +0000 Subject: Fixed retry for all Sites --- ui/src/app/app.component.html | 2 +- ui/src/app/app.component.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'ui') 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(); } -- cgit