From 4d7b60e6c94c92d374a60c6a581cbd4cecbed07c Mon Sep 17 00:00:00 2001 From: Ben Williams Date: Sun, 18 Jul 2021 15:39:51 -0700 Subject: [PATCH] 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. --- Community/Tdarr_Plugin_b39x_the1poet_surround_sound_to_ac3.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Community/Tdarr_Plugin_b39x_the1poet_surround_sound_to_ac3.js b/Community/Tdarr_Plugin_b39x_the1poet_surround_sound_to_ac3.js index b7c2726..3133cc2 100644 --- a/Community/Tdarr_Plugin_b39x_the1poet_surround_sound_to_ac3.js +++ b/Community/Tdarr_Plugin_b39x_the1poet_surround_sound_to_ac3.js @@ -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";