feat(starr-anime): Fix PMR regex to match if at end of filename (#2283)

* Fix PMR regex to match at end (Radarr)

* Fix PMR regex to match at end (Sonarr)

* Use Nuxen's suggested regex

Co-authored-by: nuxen <theonenuxen@proton.me>

* Use suggested regex

Co-authored-by: nuxen <theonenuxen@proton.me>

---------

Co-authored-by: nuxen <theonenuxen@proton.me>
pull/2287/head
rg9400 5 days ago committed by GitHub
parent 5adedbcf1b
commit 68c4c9cf17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -57,7 +57,7 @@
"negate": false, "negate": false,
"required": false, "required": false,
"fields": { "fields": {
"value": "\\b(PMR)\\b.*(Remux)" "value": "^(?=.*\\b(PMR)\\b)(?=.*\\b(Remux)\\b)"
} }
}, },
{ {

@ -66,7 +66,7 @@
"negate": false, "negate": false,
"required": false, "required": false,
"fields": { "fields": {
"value": "\\b(PMR)\\b.*(Remux)" "value": "^(?=.*\\b(PMR)\\b)(?=.*\\b(Remux)\\b)"
} }
}, },
{ {

Loading…
Cancel
Save