From 255f94786083b7935a2d7e4d1608d7698b3a3f15 Mon Sep 17 00:00:00 2001 From: Sergey M Date: Mon, 6 Mar 2023 03:30:56 +0200 Subject: [PATCH] Fixed: Mapping of parsed titles when one doesn't have an alias Co-authored-by: Sergey M --- src/NzbDrone.Core/Parser/ParsingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Parser/ParsingService.cs b/src/NzbDrone.Core/Parser/ParsingService.cs index 18d8aaf44..dec6562c8 100644 --- a/src/NzbDrone.Core/Parser/ParsingService.cs +++ b/src/NzbDrone.Core/Parser/ParsingService.cs @@ -93,7 +93,7 @@ namespace NzbDrone.Core.Parser if (!tvdbId.HasValue) { _logger.Trace("Title {0} not matching any series.", title); - return null; + continue; } if (foundTvdbId.HasValue && tvdbId != foundTvdbId)