diff --git a/src/NzbDrone.Core/Parser/Parser.cs b/src/NzbDrone.Core/Parser/Parser.cs index 84e3b3190..3a6edab3c 100644 --- a/src/NzbDrone.Core/Parser/Parser.cs +++ b/src/NzbDrone.Core/Parser/Parser.cs @@ -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;