From 7eafa249a02242c94991769f05f812cd9ad4661b Mon Sep 17 00:00:00 2001 From: Seraphys Date: Fri, 28 Aug 2026 20:56:57 +0000 Subject: [PATCH] Fix German Bluray Tier 03 --- ops/68.fix-german-bluray-tier-03.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ops/68.fix-german-bluray-tier-03.sql diff --git a/ops/68.fix-german-bluray-tier-03.sql b/ops/68.fix-german-bluray-tier-03.sql new file mode 100644 index 0000000..f7ff9bf --- /dev/null +++ b/ops/68.fix-german-bluray-tier-03.sql @@ -0,0 +1,16 @@ +-- @operation: export +-- @entity: batch +-- @name: Fix German Bluray Tier 03 +-- @exportedAt: 2026-08-28T20:56:56.556Z +-- @opIds: 14063 + +-- --- BEGIN op 14063 ( update custom_format "German Bluray Tier 03" ) +UPDATE custom_format_conditions +SET arr_type = 'all' +WHERE custom_format_name = 'German Bluray Tier 03' + AND name = 'RobertDeNiro' + AND type = 'release_group' + AND arr_type = 'radarr' + AND negate = 0 + AND required = 0; +-- --- END op 14063