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);