mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-09 15:38:19 -07:00
Fixed a typo (missing space) causing the script to not read the video
and audio bitrate for some files resulting in a larger file after processing.
This commit is contained in:
parent
69afe2c442
commit
daf8970bd9
1 changed files with 1 additions and 1 deletions
|
|
@ -761,7 +761,7 @@ function findMediaInfoItem(file, index) {
|
|||
currMIOrder = file.mediaInfo.track[i].ID - 1;
|
||||
}
|
||||
|
||||
if (currMIOrder == index|| currMIOrder == "0-" + index) {
|
||||
if (currMIOrder == index || currMIOrder == "0-" + index) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue