[Radarr] Exclude `Open Matte` from `Special Edition` CF

- [Radarr] Exclude `Open Matte` from `Special Edition` CF.
pull/1210/head
TRaSH 2 years ago
parent 12f6b99cd3
commit 029fb921f4

@ -15,21 +15,30 @@
} }
}, },
{ {
"name": "Not Theatrical ", "name": "Not IMAX Edition",
"implementation": "ReleaseTitleSpecification", "implementation": "ReleaseTitleSpecification",
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "Theatrical" "value": "\\b(IMAX[ ._-]Edition)\\b"
} }
}, },
{ {
"name": "Not IMAX Edition", "name": "Not Open Matte",
"implementation": "ReleaseTitleSpecification", "implementation": "ReleaseTitleSpecification",
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\b(IMAX[ ._-]Edition)\\b" "value": "\\b(Open[ ._-]?Matte)\\b"
}
},
{
"name": "Not Theatrical ",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "Theatrical"
} }
} }
] ]

Loading…
Cancel
Save