From 653e94463ee2c4a44386ae8d77fcfdc6624f146a Mon Sep 17 00:00:00 2001 From: Jules Date: Sat, 21 Mar 2026 01:46:08 +0100 Subject: [PATCH] Directory destination /mnt/Musique --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 4d99ca6..e5787b7 100644 --- a/app.py +++ b/app.py @@ -121,7 +121,7 @@ def run_download(download_id, urls, format_type, delete_old, copy_choice): else: download_dir = os.getenv('DOWNLOAD_DIR_MP3', '/home/jules/Musique/mp3') - copy_destination = os.getenv('COPY_DESTINATION', '/mnt/data/Musique') + copy_destination = os.getenv('COPY_DESTINATION', '/mnt/Musique') if delete_old and os.path.exists(download_dir): shutil.rmtree(download_dir)