mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Fixed: Parse endpoint response when title failed to parse
Co-Authored-By: Taloth <Taloth@users.noreply.github.com>
This commit is contained in:
parent
a344604595
commit
b8c84c8550
1 changed files with 4 additions and 1 deletions
|
@ -23,7 +23,10 @@ namespace Lidarr.Api.V1.Parse
|
||||||
|
|
||||||
if (parsedAlbumInfo == null)
|
if (parsedAlbumInfo == null)
|
||||||
{
|
{
|
||||||
return null;
|
return new ParseResource
|
||||||
|
{
|
||||||
|
Title = title
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
var remoteAlbum = _parsingService.Map(parsedAlbumInfo);
|
var remoteAlbum = _parsingService.Map(parsedAlbumInfo);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue