Fixed: Parse endpoint response when title failed to parse

Co-Authored-By: Taloth <Taloth@users.noreply.github.com>
This commit is contained in:
Qstick 2022-09-26 14:50:21 -05:00
parent a344604595
commit b8c84c8550
1 changed files with 4 additions and 1 deletions

View File

@ -23,7 +23,10 @@ namespace Lidarr.Api.V1.Parse
if (parsedAlbumInfo == null)
{
return null;
return new ParseResource
{
Title = title
};
}
var remoteAlbum = _parsingService.Map(parsedAlbumInfo);