aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/downloads.service.ts
diff options
context:
space:
mode:
authorSteffen Klee <steffen.klee@gmail.com>2021-12-13 22:35:19 +0100
committerSteffen Klee <steffen.klee@gmail.com>2021-12-13 22:35:19 +0100
commitfe4993153c168b27969dc0fae500b62504bba52a (patch)
tree5ad3086b8f9eabeccdaf7ce9602d69cef3b36e86 /ui/src/app/downloads.service.ts
parentfix sass syntax for dark mode (diff)
downloadmetube-fe4993153c168b27969dc0fae500b62504bba52a.tar.gz
metube-fe4993153c168b27969dc0fae500b62504bba52a.tar.bz2
metube-fe4993153c168b27969dc0fae500b62504bba52a.zip
Add download link to downloaded file
This adds a simple download link that points to the downloaded file. Note: This makes all files in the download directory (and its sub-directory) available to any user. Closes gh-26
Diffstat (limited to 'ui/src/app/downloads.service.ts')
-rw-r--r--ui/src/app/downloads.service.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/src/app/downloads.service.ts b/ui/src/app/downloads.service.ts
index e0db252..25bcccc 100644
--- a/ui/src/app/downloads.service.ts
+++ b/ui/src/app/downloads.service.ts
@@ -15,6 +15,7 @@ interface Download {
url: string,
status: string;
msg: string;
+ filename: string;
quality: string;
percent: number;
speed: number;
bgstack15