mirror of
https://github.com/wukko/cobalt.git
synced 2025-02-02 08:26:22 +01:00
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
This commit is contained in:
parent
cdd349cfb6
commit
8a24dbb42d
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ export default function({ r, host, audioFormat, isAudioOnly, isAudioMuted, disab
|
||||||
type: audioStreamType,
|
type: audioStreamType,
|
||||||
url: r.urls,
|
url: r.urls,
|
||||||
headers: r.headers,
|
headers: r.headers,
|
||||||
filename: r.audioFilename,
|
filename: `${r.audioFilename}.${audioFormat}`,
|
||||||
isAudioOnly: true,
|
isAudioOnly: true,
|
||||||
audioFormat,
|
audioFormat,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue