mirror of
https://github.com/Readarr/Readarr
synced 2026-01-30 19:33:07 +01:00
Fixed: Error when processing release with files Sonarr is unable to parse
This commit is contained in:
parent
e7628476f7
commit
894adbe91e
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ public void Import(TrackedDownload trackedDownload)
|
|||
{
|
||||
trackedDownload.State = TrackedDownloadState.ImportFailed;
|
||||
var statusMessages = importResults
|
||||
.Where(v => v.Result != ImportResultType.Imported)
|
||||
.Where(v => v.Result != ImportResultType.Imported && v.ImportDecision.Item != null)
|
||||
.Select(v => new TrackedDownloadStatusMessage(Path.GetFileName(v.ImportDecision.Item.Path), v.Errors))
|
||||
.ToArray();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue