1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

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
@@ -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 = "";