Skip to content

Commit

Permalink
fix(sonarr): correct word boundary for versions regex (#1511)
Browse files Browse the repository at this point in the history
  • Loading branch information
Seros authored Aug 20, 2023
1 parent c5c6c81 commit 0872920
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/Sonarr/Sonarr-Release-Profile-RegEx-Anime.md
Original file line number Diff line number Diff line change
Expand Up @@ -512,23 +512,23 @@ Add this to your Preferred with a score of **[1]**
Adds version due to anime groups sometimes fixing issues with their releases.
```bash
/\d(v2)\b/i
/\b(v2)\b/i
```
---
Add this to your Preferred with a score of **[2]**
```bash
/\d(v3)\b/i
/\b(v3)\b/i
```
---
Add this to your Preferred with a score of **[3]**
```bash
/\d(v4)\b/i
/\b(v4)\b/i
```
---
Expand Down
6 changes: 3 additions & 3 deletions docs/json/sonarr/rp/visorakAnimeTwo.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,20 +135,20 @@
{
"score": 3,
"terms": [
"/\\d(v4)\\b/i"
"/\\b(v4)\\b/i"
]
},
{
"score": 2,
"terms": [
"/\\d(v3)\\b/i"
"/\\b(v3)\\b/i"
]
},
{
"score": 1,
"terms": [
"/(10.?bit|hi10p)/i",
"/\\d(v2)\\b/i"
"/\\b(v2)\\b/i"
]
},
{
Expand Down

0 comments on commit 0872920

Please sign in to comment.