mirror of
https://github.com/wukko/cobalt.git
synced 2025-02-02 16:36:20 +01:00
api/youtube: fix audio dub track detection
This commit is contained in:
parent
6dcd951e21
commit
a589bf7e54
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ export default async function(o) {
|
||||||
&& i.audio_track
|
&& i.audio_track
|
||||||
)
|
)
|
||||||
|
|
||||||
if (dubbedAudio) {
|
if (dubbedAudio && !dubbedAudio?.audio_track?.audio_is_default) {
|
||||||
audio = dubbedAudio;
|
audio = dubbedAudio;
|
||||||
isDubbed = true;
|
isDubbed = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue