1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: Don't hang on parsable, non-matched releases

This commit is contained in:
Qstick 2020-06-20 15:39:11 -04:00
parent 40b5702ca6
commit 7120a20984

View File

@ -111,7 +111,7 @@ public void Import(TrackedDownload trackedDownload)
var outputPath = trackedDownload.DownloadItem.OutputPath.FullPath;
if (trackedDownload.RemoteMovie == null)
if (trackedDownload.RemoteMovie?.Movie == null)
{
trackedDownload.State = TrackedDownloadState.ImportPending;
trackedDownload.Warn("Unknown Movie", outputPath);