Fixing Typo in Log Message

If the audio is AC3 the log says "ll surround audio streams are in aac! " which is wrong, and confuses me when looking at log.

Updated to show correct info.
This commit is contained in:
Ben Williams 2021-07-18 15:39:51 -07:00 committed by GitHub
parent 69afe2c442
commit 4d7b60e6c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,10 +67,10 @@ function plugin(file) {
response.handBrakeMode = false;
response.FFmpegMode = true;
response.reQueueAfter = true;
response.infoLog += "☒ File has surround audio which is not in ac3! \n";
response.infoLog += "☒ File has surround audio which is NOT in ac3! \n";
return response;
} else {
response.infoLog += "☑ All surround audio streams are in aac! \n";
response.infoLog += "☑ All surround audio streams are in ac3! \n";
}
response.infoLog += "☑File meets conditions! \n";