Fixed: Parse endpoint response when title failed to parse

Co-Authored-By: Taloth <Taloth@users.noreply.github.com>
pull/3011/head
Qstick 2 years ago
parent a344604595
commit b8c84c8550

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

Loading…
Cancel
Save