Fixed a bug where reports weren't being added to history

This commit is contained in:
kay.one 2011-05-23 21:12:54 -07:00
commit 500e9af6c3
18 changed files with 344 additions and 225 deletions

View file

@ -68,7 +68,7 @@ namespace NzbDrone.Core
Proper = title.ToLower().Contains("proper"),
CleanTitle = seriesName,
SeasonNumber = season,
Episodes = new List<int>()
EpisodeNumbers = new List<int>()
};
foreach (Match matchGroup in match)
@ -83,7 +83,7 @@ namespace NzbDrone.Core
for (int i = first; i <= last; i++)
{
parsedEpisode.Episodes.Add(i);
parsedEpisode.EpisodeNumbers.Add(i);
}
}
}