From 724a699b43887eea1bb890382b47358508dda3d2 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Fri, 28 Aug 2026 19:46:51 +0000 Subject: [PATCH] Fix Remux Negation for HD Bluray Tiers --- ...fix-remux-negation-for-hd-bluray-tiers.sql | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 ops/116.fix-remux-negation-for-hd-bluray-tiers.sql diff --git a/ops/116.fix-remux-negation-for-hd-bluray-tiers.sql b/ops/116.fix-remux-negation-for-hd-bluray-tiers.sql new file mode 100644 index 0000000..51cd9c0 --- /dev/null +++ b/ops/116.fix-remux-negation-for-hd-bluray-tiers.sql @@ -0,0 +1,27 @@ +-- @operation: export +-- @entity: batch +-- @name: Fix Remux Negation for HD Bluray Tiers +-- @exportedAt: 2026-08-28T19:46:49.195Z +-- @opIds: 13826, 13827 + +-- --- BEGIN op 13826 ( update custom_format "HD Bluray Tier 01" ) +UPDATE custom_format_conditions +SET negate = 1 +WHERE custom_format_name = 'HD Bluray Tier 01' + AND name = 'Not Remux Source' + AND type = 'source' + AND arr_type = 'sonarr' + AND negate = 0 + AND required = 1; +-- --- END op 13826 + +-- --- BEGIN op 13827 ( update custom_format "HD Bluray Tier 02" ) +UPDATE custom_format_conditions +SET negate = 1 +WHERE custom_format_name = 'HD Bluray Tier 02' + AND name = 'Not Remux Source' + AND type = 'source' + AND arr_type = 'sonarr' + AND negate = 0 + AND required = 1; +-- --- END op 13827