mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
Fixed: Null reference processing failed import for unknown book
This commit is contained in:
@@ -181,6 +181,11 @@ namespace NzbDrone.Core.History
|
||||
|
||||
public void Handle(BookImportIncompleteEvent message)
|
||||
{
|
||||
if (message.TrackedDownload.RemoteBook == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
foreach (var book in message.TrackedDownload.RemoteBook.Books)
|
||||
{
|
||||
var history = new History
|
||||
|
||||
Reference in New Issue
Block a user