Fixed: Parse endpoint response when title failed to parse

Fixes #6523
pull/6526/head
Qstick 3 years ago committed by GitHub
parent 31ba45cb7a
commit 0daa978fba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -34,7 +34,10 @@ namespace Radarr.Api.V3.Parse
if (parsedMovieInfo == null)
{
return null;
return new ParseResource
{
Title = title
};
}
var remoteMovie = _parsingService.Map(parsedMovieInfo, "");

Loading…
Cancel
Save