From 8a24dbb42d5c8bf31439ee1a15508bbbd4e86300 Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 24 Nov 2024 19:02:10 +0600 Subject: [PATCH] api/match-action: fix audio in tiktok picker it didn't have an audio format in the filename, so it either failed or downloaded without an extension. closes #870 --- api/src/processing/match-action.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/processing/match-action.js b/api/src/processing/match-action.js index 5820214e..262b3acf 100644 --- a/api/src/processing/match-action.js +++ b/api/src/processing/match-action.js @@ -98,7 +98,7 @@ export default function({ r, host, audioFormat, isAudioOnly, isAudioMuted, disab type: audioStreamType, url: r.urls, headers: r.headers, - filename: r.audioFilename, + filename: `${r.audioFilename}.${audioFormat}`, isAudioOnly: true, audioFormat, })