fix(sonarr): correct word boundary for versions regex (#1511)

pull/1514/head
Erik Müller 10 months ago committed by GitHub
parent c5c6c81b42
commit 0872920d85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -512,7 +512,7 @@ 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
```
---
@ -520,7 +520,7 @@ Adds version due to anime groups sometimes fixing issues with their releases.
Add this to your Preferred with a score of **[2]**
```bash
/\d(v3)\b/i
/\b(v3)\b/i
```
---
@ -528,7 +528,7 @@ Add this to your Preferred with a score of **[2]**
Add this to your Preferred with a score of **[3]**
```bash
/\d(v4)\b/i
/\b(v4)\b/i
```
---

@ -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"
]
},
{

Loading…
Cancel
Save