diff --git a/src/NzbDrone.Core/ImportLists/RadarrList/RadarrListParser.cs b/src/NzbDrone.Core/ImportLists/RadarrList/RadarrListParser.cs index 25e011fe5..8eaf13e24 100644 --- a/src/NzbDrone.Core/ImportLists/RadarrList/RadarrListParser.cs +++ b/src/NzbDrone.Core/ImportLists/RadarrList/RadarrListParser.cs @@ -1,4 +1,5 @@ using System.Collections.Generic; +using System.Linq; using Newtonsoft.Json; using NzbDrone.Common.Extensions; using NzbDrone.Common.Http; @@ -28,7 +29,9 @@ namespace NzbDrone.Core.ImportLists.RadarrList return movies; } - return jsonResponse.SelectList(m => new ImportListMovie { TmdbId = m.Id }); + return jsonResponse + .Where(m => m.Id > 0) + .SelectList(m => new ImportListMovie { TmdbId = m.Id }); } protected virtual bool PreProcess(ImportListResponse importListResponse)