aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.ts
diff options
context:
space:
mode:
authorErazor2 <jeromewhweb@gmail.com>2022-01-04 22:05:33 +0000
committerErazor2 <jeromewhweb@gmail.com>2022-01-04 22:05:33 +0000
commit4eb3916546602d2cb25e06de26ffb8b8683b46d0 (patch)
tree9f941f9eeacbeedea125fc4c7391c05cc5df4780 /ui/src/app/app.component.ts
parentAdded URL-Button (diff)
downloadmetube-4eb3916546602d2cb25e06de26ffb8b8683b46d0.tar.gz
metube-4eb3916546602d2cb25e06de26ffb8b8683b46d0.tar.bz2
metube-4eb3916546602d2cb25e06de26ffb8b8683b46d0.zip
Fixed retry for all Sites
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