mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
Added: Options to make parsing more lenient. (Adds support for some german and french releasegroups) (#1692)
Fixes #1676. Fixes #1632.
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
if (!title.Contains(".")) return false;
|
||||
if (title.Contains(" ")) return false;
|
||||
|
||||
var parsedTitle = Parser.ParseMovieTitle(title);
|
||||
var parsedTitle = Parser.ParseMovieTitle(title, false); //We are not lenient when it comes to scene checking!
|
||||
|
||||
if (parsedTitle == null ||
|
||||
parsedTitle.ReleaseGroup == null ||
|
||||
|
||||
Reference in New Issue
Block a user