From b8c84c8550d5faa134991675c45b97e44094afb5 Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 26 Sep 2022 14:50:21 -0500 Subject: [PATCH] Fixed: Parse endpoint response when title failed to parse Co-Authored-By: Taloth --- src/Lidarr.Api.V1/Parse/ParseController.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Lidarr.Api.V1/Parse/ParseController.cs b/src/Lidarr.Api.V1/Parse/ParseController.cs index 38e2b89f6..8cab2252b 100644 --- a/src/Lidarr.Api.V1/Parse/ParseController.cs +++ b/src/Lidarr.Api.V1/Parse/ParseController.cs @@ -23,7 +23,10 @@ namespace Lidarr.Api.V1.Parse if (parsedAlbumInfo == null) { - return null; + return new ParseResource + { + Title = title + }; } var remoteAlbum = _parsingService.Map(parsedAlbumInfo);