mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
Update SkyHookProxy.cs
This commit is contained in:
parent
cbb2b778a6
commit
42f205a731
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
|||
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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue