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/'; }