Fix for movies with . in title when importing them. Fixes #268

This commit is contained in:
Leonardo Galli 2017-01-17 14:47:23 +01:00
parent 6d2f81e3ed
commit c64597c9f1
1 changed files with 3 additions and 1 deletions

View File

@ -203,7 +203,9 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
{
var lowerTitle = title.ToLower();
var parserResult = Parser.Parser.ParseMovieTitle(title, true);
lowerTitle = lowerTitle.Replace(".", "");
var parserResult = Parser.Parser.ParseMovieTitle(title.Replace(".", ""), true);
var yearTerm = "";