mirror of
https://github.com/Radarr/Radarr
synced 2025-02-24 23:23:21 +00:00
Fixed: Unknown Movie Releases stuck in ImportPending
This commit is contained in:
parent
b00326424f
commit
913037c45e
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ public void Import(TrackedDownload trackedDownload)
|
|||
if (importResults.Any(c => c.Result != ImportResultType.Imported))
|
||||
{
|
||||
var statusMessages = importResults
|
||||
.Where(v => v.Result != ImportResultType.Imported)
|
||||
.Where(v => v.Result != ImportResultType.Imported && v.ImportDecision.LocalMovie != null)
|
||||
.Select(v => new TrackedDownloadStatusMessage(Path.GetFileName(v.ImportDecision.LocalMovie.Path), v.Errors))
|
||||
.ToArray();
|
||||
|
||||
|
|
Loading…
Reference in a new issue