fix(radarr): IMAX CF false positives (#1655)

pull/1658/head
nuxen 6 months ago committed by GitHub
parent 662834c21e
commit 339fe13a43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,6 +3,7 @@
"trash_scores": { "trash_scores": {
"default": 800 "default": 800
}, },
"trash_regex": "https://regex101.com/r/e7ugxU/1",
"name": "IMAX Enhanced", "name": "IMAX Enhanced",
"includeCustomFormatWhenRenaming": true, "includeCustomFormatWhenRenaming": true,
"specifications": [ "specifications": [
@ -12,7 +13,7 @@
"negate": false, "negate": false,
"required": true, "required": true,
"fields": { "fields": {
"value": "^(?=.*(DSNP|Disney\\+|CORE(?=[ ._-]web[ ._-]?(dl|rip)\\b)|\\bBC(?=[ ._-]web[ ._-]?(dl|rip)\\b)|IMAX[- .]Enhanced)\\b)(?=.*\\b(IMAX|IMAX[- .]Enhanced)\\b).*" "value": "^(?=.*\\b((DSNP|Disney\\+|BC|B?CORE)(?=[ ._-]web[ ._-]?(dl|rip)\\b)))(?=.*\\b((?<!NON[ ._-])IMAX)\\b)|^(?=.*\\b(IMAX[ ._-]Enhanced)\\b)"
} }
} }
] ]

@ -3,6 +3,7 @@
"trash_scores": { "trash_scores": {
"default": 800 "default": 800
}, },
"trash_regex": "https://regex101.com/r/e7ugxU/1",
"name": "IMAX", "name": "IMAX",
"includeCustomFormatWhenRenaming": false, "includeCustomFormatWhenRenaming": false,
"specifications": [ "specifications": [
@ -12,7 +13,7 @@
"negate": false, "negate": false,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\bIMAX\\b" "value": "\\b((?<!NON[ ._-])IMAX)\\b"
} }
}, },
{ {
@ -21,7 +22,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "^(?=.*(DSNP|CORE(?=[ ._-]web[ ._-]?(dl|rip)\\b)|\\bBC(?=[ ._-]web[ ._-]?(dl|rip)\\b)|IMAX[- .]Enhanced)\\b)(?=.*\\b(IMAX|IMAX[- .]Enhanced)\\b).*" "value": "^(?=.*\\b((DSNP|Disney\\+|BC|B?CORE)(?=[ ._-]web[ ._-]?(dl|rip)\\b)))(?=.*\\b((?<!NON[ ._-])IMAX)\\b)|^(?=.*\\b(IMAX[ ._-]Enhanced)\\b)"
} }
} }
] ]

Loading…
Cancel
Save