From b243c1c95808b6775a3946bedebcfc37c484e52f Mon Sep 17 00:00:00 2001 From: marcobaobao Date: Wed, 5 Feb 2025 10:49:15 +0100 Subject: [PATCH] hotfix for #259 --- frontend/src/components/DownloadDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/DownloadDialog.tsx b/frontend/src/components/DownloadDialog.tsx index 28e7eb7..d86b111 100644 --- a/frontend/src/components/DownloadDialog.tsx +++ b/frontend/src/components/DownloadDialog.tsx @@ -110,7 +110,7 @@ const DownloadDialog: FC = ({ open, onClose, onDownloadStart }) => { if (pickedAudioFormat !== '') codes.push(pickedAudioFormat) if (pickedBestFormat !== '') codes.push(pickedBestFormat) - const downloadTemplate = `${customArgsState} ${cookies}` + const downloadTemplate = `${customArgs} ${cookies}` .replace(/ +/g, ' ') .trim()