1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-04 10:02:40 +01:00

Update SkyHookProxy.cs

This commit is contained in:
Leonardo Galli 2017-01-18 22:50:12 +01:00 committed by GitHub
parent cbb2b778a6
commit 42f205a731

View File

@ -218,7 +218,7 @@ public List<Movie> SearchForNewMovie(string title)
if (parserResult != null && parserResult.MovieTitle != title)
{
//Parser found something interesting!
lowerTitle = parserResult.MovieTitle.ToLower();
lowerTitle = parserResult.MovieTitle.ToLower().replace(".", " "); //TODO Update so not every period gets replaced (e.g. R.I.P.D.)
if (parserResult.Year > 1800)
{
yearTerm = parserResult.Year.ToString();