DailySeries.CSV now has series name along with series Id.

This commit is contained in:
Mark McDowall 2011-12-19 17:15:15 -08:00
commit 86c5e73f81
3 changed files with 8 additions and 3 deletions

View file

@ -55,7 +55,10 @@ namespace NzbDrone.Core.Providers
{
int seriesId;
if (Int32.TryParse(line, out seriesId))
//Split CSV, first item should be the seriesId
var split = line.Split(',');
if (Int32.TryParse(split[0], out seriesId))
seriesIds.Add(seriesId);
}
}