chore: Set download path to sensible

This commit is contained in:
Tibo De Peuter 2025-02-02 21:27:42 +01:00
parent 771db6c8b5
commit 9bb1f2068f
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2

View file

@ -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;