fix(radarr): add `Extended Clip` to Extras CF (#1668)

pull/1670/head
yammes08 6 months ago committed by GitHub
commit e87ad53be6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,7 +13,7 @@
"negate": false,
"required": true,
"fields": {
"value": "(?<=\\b[12]\\d{3}\\b).*\\b(Extras|Bonus)\\b"
"value": "(?<=\\b[12]\\d{3}\\b).*\\b(Extras|Bonus|Extended[ ._-]Clip)\\b"
}
}
]

@ -42,6 +42,15 @@
"fields": {
"value": "Theatrical"
}
},
{
"name": "Not Extended Clip",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "\\b(Extended[ ._-]Clip)\\b"
}
}
]
}

@ -13,7 +13,7 @@
"negate": false,
"required": true,
"fields": {
"value": "(?<=\\bS\\d+\\b).*\\b(Extras|Bonus)\\b"
"value": "(?<=\\bS\\d+\\b).*\\b(Extras|Bonus|Extended[ ._-]Clip)\\b"
}
}
]

Loading…
Cancel
Save