1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Fixed: Parse endpoint response when title failed to parse

Fixes #6523
This commit is contained in:
Qstick
2021-08-03 19:01:46 -04:00
committed by GitHub
parent 31ba45cb7a
commit 0daa978fba
+4 -1
View File
@@ -34,7 +34,10 @@ namespace Radarr.Api.V3.Parse
if (parsedMovieInfo == null) if (parsedMovieInfo == null)
{ {
return null; return new ParseResource
{
Title = title
};
} }
var remoteMovie = _parsingService.Map(parsedMovieInfo, ""); var remoteMovie = _parsingService.Map(parsedMovieInfo, "");