mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-16 02:02:53 -07:00
fix non-iterable type. Fixes #1210
This commit is contained in:
parent
346c0952e1
commit
c4fea222a9
1 changed files with 2 additions and 1 deletions
|
@ -382,7 +382,8 @@ def buildCommands(file, newDir, movieName, bitbucket):
|
||||||
audio_cmd.extend(audio_cmd2)
|
audio_cmd.extend(audio_cmd2)
|
||||||
|
|
||||||
if core.AINCLUDE and core.ACODEC3:
|
if core.AINCLUDE and core.ACODEC3:
|
||||||
for audio in audioStreams.extend(commentary): #add commentry tracks back here.
|
audioStreams.extend(commentary) #add commentry tracks back here.
|
||||||
|
for audio in audioStreams:
|
||||||
if audio["index"] in a_mapped:
|
if audio["index"] in a_mapped:
|
||||||
continue
|
continue
|
||||||
used_audio += 1
|
used_audio += 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue