Merge pull request #153 from zachg99/master

Fixed a typo causing NaN bitrates
This commit is contained in:
HaveAGitGat 2021-08-12 19:38:33 +02:00 committed by GitHub
commit bff9727496
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}