From 9bb1f2068f3a923634e7405ac7b6465d71b188b8 Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Sun, 2 Feb 2025 21:27:42 +0100 Subject: [PATCH] chore: Set download path to sensible --- backend/queueManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/queueManager.ts b/backend/queueManager.ts index 4c06ea0..d4bead3 100644 --- a/backend/queueManager.ts +++ b/backend/queueManager.ts @@ -187,7 +187,7 @@ class QueueManager { try { const timeout: number = (item.timeout ?? TIMEOUT) * item.song.trackCount; - const result: DownloadResult = await this.lucida.download(item.song.url, '/tmp', timeout, current); + const result: DownloadResult = await this.lucida.download(item.song.url, '/data', timeout, current); if (!result.success && (item.retries ?? 0) + 1 < RETRIES) { item.retries = (item.retries ?? 0) + 1;