mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 09:47:39 +00:00
Fixed: Possible issue with manual import of an unknown release
This commit is contained in:
parent
7321075631
commit
940cba5f90
1 changed files with 1 additions and 4 deletions
|
@ -288,10 +288,7 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Manual
|
|||
if (file.DownloadId.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
trackedDownload = _trackedDownloadService.Find(file.DownloadId);
|
||||
if (trackedDownload != null)
|
||||
{
|
||||
localEpisode.DownloadClientEpisodeInfo = trackedDownload.RemoteEpisode.ParsedEpisodeInfo;
|
||||
}
|
||||
localEpisode.DownloadClientEpisodeInfo = trackedDownload?.RemoteEpisode?.ParsedEpisodeInfo;
|
||||
}
|
||||
|
||||
if (file.FolderName.IsNotNullOrWhiteSpace())
|
||||
|
|
Loading…
Reference in a new issue