mirror of
https://github.com/Readarr/Readarr
synced 2025-12-14 20:36:18 +01:00
Fixed: Manual import from queue showing error when download name failed to parse
(cherry picked from commit 079a0b56c3e124616fef6e2f81c19f67c13acb96) Closes #67
This commit is contained in:
parent
b23e225271
commit
db885a5111
1 changed files with 2 additions and 2 deletions
|
|
@ -138,11 +138,11 @@ private List<ManualImportItem> ProcessFolder(string folder, string downloadId, A
|
|||
if (downloadId.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
var trackedDownload = _trackedDownloadService.Find(downloadId);
|
||||
downloadClientItem = trackedDownload.DownloadItem;
|
||||
downloadClientItem = trackedDownload?.DownloadItem;
|
||||
|
||||
if (author == null)
|
||||
{
|
||||
author = trackedDownload.RemoteBook?.Author;
|
||||
author = trackedDownload?.RemoteBook?.Author;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue