From e89da396cd05559e579b8b3c3aeebc362e40ac00 Mon Sep 17 00:00:00 2001 From: vaaski Date: Thu, 2 May 2024 12:56:52 +0200 Subject: [PATCH] add `PUBLIC_HOST_URL` config key --- app/main.py | 1 + ui/src/app/app.component.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index f77181c..3d70aa1 100644 --- a/app/main.py +++ b/app/main.py @@ -24,6 +24,7 @@ class Config: 'DELETE_FILE_ON_TRASHCAN': 'false', 'STATE_DIR': '.', 'URL_PREFIX': '', + 'PUBLIC_HOST_URL': 'download/', 'OUTPUT_TEMPLATE': '%(title)s.%(ext)s', 'OUTPUT_TEMPLATE_CHAPTER': '%(title)s - %(section_number)s %(section_title)s.%(ext)s', 'YTDL_OPTIONS': '{}', diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts index deb2760..650a844 100644 --- a/ui/src/app/app.component.ts +++ b/ui/src/app/app.component.ts @@ -233,7 +233,7 @@ export class AppComponent implements AfterViewInit { } buildDownloadLink(download: Download) { - let baseDir = 'download/'; + let baseDir = this.downloads.configuration["PUBLIC_HOST_URL"] ?? 'download/'; if (download.quality == 'audio' || download.filename.endsWith('.mp3')) { baseDir = 'audio_download/'; }