From 6fbc6a222f8855e24a809c6523d8aefae94a5d0b Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Wed, 31 Aug 2022 17:31:10 +0200 Subject: [PATCH] Revert "Update Tdarr_Plugin_vdka_Tiered_CPU_CRF_Based_Configurable.js (#323)" This reverts commit 2d406424fe08e30a46f947ac4004a6352ff0b65a. --- .../Tdarr_Plugin_vdka_Tiered_CPU_CRF_Based_Configurable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Community/Tdarr_Plugin_vdka_Tiered_CPU_CRF_Based_Configurable.js b/Community/Tdarr_Plugin_vdka_Tiered_CPU_CRF_Based_Configurable.js index 16def02..e1d5aee 100644 --- a/Community/Tdarr_Plugin_vdka_Tiered_CPU_CRF_Based_Configurable.js +++ b/Community/Tdarr_Plugin_vdka_Tiered_CPU_CRF_Based_Configurable.js @@ -191,7 +191,7 @@ const plugin = (file, librarySettings, inputs, otherArguments) => { // check if the file contains a hevc track // it will not be transcoded if true and the plugin will exit - if (file.ffProbeData.streams.some((x) => x.codec_name?.toLowerCase() === 'hevc')) { + if (file.ffProbeData.streams.filter((x) => x.codec_name.toLowerCase() === 'hevc').length) { response.infoLog += '☑File is already in hevc! \n'; return response; }