mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
DailySeries.CSV now has series name along with series Id.
This commit is contained in:
parent
69ddeeb0e3
commit
86c5e73f81
3 changed files with 8 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue