mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-23 13:57:06 -04:00
Fixed: Manual import from queue showing error when download name failed to parse
This commit is contained in:
parent
66721affe7
commit
079a0b56c3
1 changed files with 2 additions and 2 deletions
|
@ -162,11 +162,11 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Manual
|
|||
if (downloadId.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
var trackedDownload = _trackedDownloadService.Find(downloadId);
|
||||
downloadClientItem = trackedDownload.DownloadItem;
|
||||
downloadClientItem = trackedDownload?.DownloadItem;
|
||||
|
||||
if (series == null)
|
||||
{
|
||||
series = trackedDownload.RemoteEpisode.Series;
|
||||
series = trackedDownload?.RemoteEpisode?.Series;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue