mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
Fixing regression in DV HDR10 hybrid matching in change made for matching HDR10Plus (any character separating DV & HDR10 apart from a . would not match, example below).
Movie.2021.2160p.WEB-DL.h265.DV.HDR10.EAC3.Atmos.5.1.mkv would match Movie.2021.2160p.WEB-DL.h265.[DV HDR10].EAC3.Atmos.5.1.mkv would not match
This commit is contained in:
parent
4910ae99af
commit
9de88d567d
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ templates:
|
|||
- alt: plus
|
||||
value: '(?i)\bhdr10(\+|p(lus)?\b)'
|
||||
- alt: dvhdr
|
||||
value: '(?i)\bdv((\.hdr10?\b)|(\.hdr10(\+|p(lus)?\b)))'
|
||||
value: '(?i)\bdv((.hdr10?\b)|(.hdr10(\+|p(lus)?\b)))'
|
||||
optional:
|
||||
- all
|
||||
- use_<<key>>
|
||||
|
|
Loading…
Reference in a new issue