Merge pull request #1097 from geogolem/fixIMDBNormalization

incorrect check for imdbId prefix
This commit is contained in:
geogolem
2017-03-09 13:59:33 -05:00
committed by GitHub

View File

@@ -603,7 +603,7 @@ namespace NzbDrone.Core.Parser
{
if (imdbId.Length > 2)
{
return (imdbId.Substring(2) != "tt" ? $"tt{imdbId}" : imdbId);
return (imdbId.Substring(0,2) != "tt" ? $"tt{imdbId}" : imdbId);
}
return null;