Fixed: Parser error when using (year) name folder (#1956) (Fixes #1951)

This commit is contained in:
MangaValk
2017-08-19 00:24:41 +02:00
committed by Leonardo Galli
parent f184fc2827
commit 4d8a270170
2 changed files with 10 additions and 4 deletions
+1 -1
View File
@@ -848,7 +848,7 @@ namespace NzbDrone.Core.Parser
private static ParsedMovieInfo ParseMovieMatchCollection(MatchCollection matchCollection)
{
if (!matchCollection[0].Groups["title"].Success)
if (!matchCollection[0].Groups["title"].Success || matchCollection[0].Groups["title"].Value == "(")
{
return null;
}