mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Log if ParsedMovieInfo is NULL.
This commit is contained in:
parent
8765155223
commit
712c0eb84a
@ -226,6 +226,11 @@ private void Insert(DownloadDecision decision)
|
||||
Title = decision.RemoteMovie.Release.Title,
|
||||
Added = DateTime.UtcNow
|
||||
};
|
||||
if (release.ParsedMovieInfo == null)
|
||||
{
|
||||
_logger.Warn("Pending release {0} does not have ParsedMovieInfo, will cause issues.", release.Title);
|
||||
}
|
||||
|
||||
_repository.Insert(release);
|
||||
|
||||
_eventAggregator.PublishEvent(new PendingReleasesUpdatedEvent());
|
||||
|
Loading…
Reference in New Issue
Block a user