mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
No longer setting AirDate to null if it aired before series start date
This was causing an issue which is caused by bad data coming from trakt...
This commit is contained in:
parent
e1f2b0da69
commit
9b80478f6f
2 changed files with 2 additions and 5 deletions
|
@ -96,7 +96,7 @@ namespace NzbDrone.Core.Tv
|
|||
series.QualityProfileId = edited.QualityProfileId;
|
||||
series.Monitored = edited.Monitored;
|
||||
series.SeasonFolder = edited.SeasonFolder;
|
||||
//series.Path = edited.Path;
|
||||
series.Path = edited.Path;
|
||||
series.CustomStartDate = edited.CustomStartDate;
|
||||
|
||||
_seriesRepository.Update(series);
|
||||
|
@ -109,7 +109,6 @@ namespace NzbDrone.Core.Tv
|
|||
return _seriesRepository.FindByTvdbId(tvdbId);
|
||||
}
|
||||
|
||||
|
||||
public Series FindBySlug(string slug)
|
||||
{
|
||||
var series = _seriesRepository.FindBySlug(slug);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue