mirror of
https://github.com/alexta69/metube.git
synced 2025-04-03 20:27:36 +03:00
add PUBLIC_HOST_URL
config key
This commit is contained in:
parent
637f456de3
commit
e89da396cd
2 changed files with 2 additions and 1 deletions
|
@ -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': '{}',
|
||||
|
|
|
@ -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/';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue