Fixed: Parse TELESYNCH as TELESYNC (#10445)

Fixes #10414
pull/10449/head
bakerboy448 2 months ago committed by GitHub
parent d5dd5e08ca
commit 72b2cfe8be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -36,6 +36,7 @@ namespace NzbDrone.Core.Test.ParserTests
};
[TestCase("Movie.Title.3.2017.720p.TSRip.x264.AAC-Ozlem", false)]
[TestCase("Movie: Title (2024) TeleSynch 720p | HEVC-FILVOVAN", false)]
public void should_parse_ts(string title, bool proper)
{
ParseAndVerifyQuality(title, QualitySource.TELESYNC, proper, Resolution.R720p);

@ -26,7 +26,7 @@ namespace NzbDrone.Core.Parser
(?<dsr>WS[-_. ]DSR|DSR)|
(?<regional>R[0-9]{1}|REGIONAL)|
(?<scr>SCR|SCREENER|DVDSCR|DVDSCREENER)|
(?<ts>TS[-_. ]|TELESYNC|HD-TS|HDTS|PDVD|TSRip|HDTSRip)|
(?<ts>TS[-_. ]|TELESYNCH?|HD-TS|HDTS|PDVD|TSRip|HDTSRip)|
(?<tc>TC|TELECINE|HD-TC|HDTC)|
(?<cam>CAMRIP|(?:NEW)?CAM|HD-?CAM(?:Rip)?|HQCAM)|
(?<wp>WORKPRINT|WP)|

Loading…
Cancel
Save