Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(starr): Moved webdl and webrip into Amazon regex to prevent incorrect matches #1950

Merged
Changes from 8 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
511cdc0
Amazon in a word boundary is not enough to avoid matching episode titles
May 22, 2024
bed96b6
Added the same regex to the sonarr Amazon CF
May 22, 2024
c1158f0
Merge branch 'master' into fix/Amazon-CF-should-not-match-episode-names
FonduemangVI May 23, 2024
e35d77d
Negative lookbehind added for "the.amazon"
May 23, 2024
b424920
Merge branch 'fix/Amazon-CF-should-not-match-episode-names' of https:…
May 23, 2024
8c664f7
Simplified the regex
May 24, 2024
657e058
Reverted the radarr amzn CF
May 24, 2024
fc8b991
Added a blank line to the bottom of radarr amzn CF
May 24, 2024
43858e8
made the same adjustment for the radarr cf
May 26, 2024
bbc703b
Put the right trash ID back
May 26, 2024
8e39b33
Reverted changes after realising I cannot just copy-paste the sonarr …
May 26, 2024
436e669
Added extra backwards slashes
May 26, 2024
7440b22
Removed a comma
May 26, 2024
c90ee80
Amazon in a word boundary is not enough to avoid matching episode titles
May 22, 2024
91a645a
Added the same regex to the sonarr Amazon CF
May 22, 2024
1d2dae8
Negative lookbehind added for "the.amazon"
May 23, 2024
ab016f1
Simplified the regex
May 24, 2024
0efdf8c
Reverted the radarr amzn CF
May 24, 2024
1e4a6ef
Added a blank line to the bottom of radarr amzn CF
May 24, 2024
9ca41d9
made the same adjustment for the radarr cf
May 26, 2024
0db2a08
Put the right trash ID back
May 26, 2024
ec4cbb7
Reverted changes after realising I cannot just copy-paste the sonarr …
May 26, 2024
de837c6
Added extra backwards slashes
May 26, 2024
6d7d9f5
Removed a comma
May 26, 2024
ac63d1c
Merge branch 'fix/Amazon-CF-should-not-match-episode-names' of https:…
Jun 1, 2024
392c1a3
Put the WEBDL and WEBRIP conditions back
Jun 1, 2024
3a399fc
Merge branch 'master' into fix/Amazon-CF-should-not-match-episode-names
nuxencs Jun 1, 2024
049fd55
Merge branch 'master' into fix/Amazon-CF-should-not-match-episode-names
FonduemangVI Jun 2, 2024
4f74580
Merge branch 'master' into fix/Amazon-CF-should-not-match-episode-names
FonduemangVI Jun 2, 2024
88c91e6
Merge branch 'master' into fix/Amazon-CF-should-not-match-episode-names
FonduemangVI Jun 2, 2024
c709002
Merge branch 'master' into fix/Amazon-CF-should-not-match-episode-names
FonduemangVI Jun 2, 2024
b169d7e
Merge branch 'master' into fix/Amazon-CF-should-not-match-episode-names
FonduemangVI Jun 28, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 1 addition & 19 deletions docs/json/sonarr/cf/amzn.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,7 @@
"negate": false,
"required": true,
"fields": {
"value": "\\b(amzn|amazon(hd)?)\\b"
}
},
{
"name": "WEBDL",
"implementation": "SourceSpecification",
"negate": false,
"required": false,
"fields": {
"value": 3
}
},
{
"name": "WEBRIP",
"implementation": "SourceSpecification",
"negate": false,
"required": false,
"fields": {
"value": 4
"value": "\b(amzn|amazon(hd)?)\b[ ._-]web[ ._-]?(dl|rip)?\b"
}
}
]
Expand Down