From 9249f0ca5d2d3288aa0453b4dff42f32055660be Mon Sep 17 00:00:00 2001 From: ta264 Date: Tue, 3 Aug 2021 21:48:49 +0100 Subject: [PATCH] Fixed: ArgumentNullException importing against a newly added edition with no series links - Fixes Sentry READARR-2CY (cherry picked from commit 4eebd4f2050ca646869b657bb365e11b1eea4d0c) --- src/NzbDrone.Core/MetadataSource/Goodreads/GoodreadsProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/MetadataSource/Goodreads/GoodreadsProxy.cs b/src/NzbDrone.Core/MetadataSource/Goodreads/GoodreadsProxy.cs index 2604f15a2..7895a4436 100644 --- a/src/NzbDrone.Core/MetadataSource/Goodreads/GoodreadsProxy.cs +++ b/src/NzbDrone.Core/MetadataSource/Goodreads/GoodreadsProxy.cs @@ -869,7 +869,7 @@ private static List MapSearchSeries(string title, string titleWi } } - return null; + return new List(); } } }