fixed broken tests

This commit is contained in:
kay.one 2011-06-02 18:24:15 -07:00
commit a986c2790d
2 changed files with 1 additions and 8 deletions

View file

@ -106,7 +106,7 @@ namespace NzbDrone.Core.Providers
var normalizeTitle = Parser.NormalizeTitle(title);
var seriesId = SceneNameHelper.GetIdByName(normalizeTitle);
if (seriesId != 0)
if (seriesId != null)
{
return GetSeries(seriesId.Value);
}