Skip to content

Commit

Permalink
Fix HDR10 regex to correctly exclude +/Plus
Browse files Browse the repository at this point in the history
  • Loading branch information
yammes08 committed Jan 26, 2025
1 parent cf01c79 commit 5ffe986
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 5ffe986

Please sign in to comment.