mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
diskscan will not fully fail if a single file fails to be imported.
This commit is contained in:
parent
6936f042f5
commit
8e89847f30
2 changed files with 19 additions and 2 deletions
|
@ -98,6 +98,9 @@ namespace NzbDrone.Core.Parser
|
|||
return new List<Episode>();
|
||||
}
|
||||
|
||||
|
||||
//TODO: this will fail since parsed date will be local, and stored date will be UTC
|
||||
//which means they will probebly end up on diffrent dates
|
||||
var episodeInfo = _episodeService.GetEpisode(series.Id, parsedEpisodeInfo.AirDate.Value);
|
||||
|
||||
if (episodeInfo != null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue