Skip to content

Commit

Permalink
fix(Starr): Fix HDR10 regex to correctly exclude +/Plus (#2240)
Browse files Browse the repository at this point in the history
Fix HDR10 regex to correctly exclude +/Plus
  • Loading branch information
yammes08 authored Jan 26, 2025
1 parent bbdd57a commit 42c2f93
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/json/radarr/cf/hdr-undefined.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
"value": "\\bHDR10(?!\\+|Plus)\\b"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/json/radarr/cf/hdr.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
"value": "\\bHDR10(?!\\+|Plus)\\b"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/json/radarr/cf/hdr10.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
"value": "\\bHDR10(?!\\+|Plus)\\b"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/json/radarr/cf/hlg.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
"value": "\\bHDR10(?!\\+|Plus)\\b"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/json/radarr/cf/pq.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
"value": "\\bHDR10(?!\\+|Plus)\\b"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/json/sonarr/cf/hdr-undefined.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
"value": "\\bHDR10(?!\\+|Plus)\\b"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/json/sonarr/cf/hdr.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
"value": "\\bHDR10(?!\\+|Plus)\\b"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/json/sonarr/cf/hdr10.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
"value": "\\bHDR10(?!\\+|Plus)\\b"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/json/sonarr/cf/hlg.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
"value": "\\bHDR10(?!\\+|Plus)\\b"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/json/sonarr/cf/pq.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"negate": true,
"required": true,
"fields": {
"value": "\\bHDR10(\\b[^+|Plus])"
"value": "\\bHDR10(?!\\+|Plus)\\b"
}
},
{
Expand Down

0 comments on commit 42c2f93

Please sign in to comment.