parent
dc7f46027a
commit
59409a7e72
|
@ -32,7 +32,10 @@ namespace NzbDrone.Api.Parse
|
||||||
|
|
||||||
if (parsedEpisodeInfo == null)
|
if (parsedEpisodeInfo == null)
|
||||||
{
|
{
|
||||||
return null;
|
return new ParseResource
|
||||||
|
{
|
||||||
|
Title = title
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
var remoteEpisode = _parsingService.Map(parsedEpisodeInfo, 0, 0);
|
var remoteEpisode = _parsingService.Map(parsedEpisodeInfo, 0, 0);
|
||||||
|
|
|
@ -32,7 +32,10 @@ namespace Sonarr.Api.V3.Parse
|
||||||
|
|
||||||
if (parsedEpisodeInfo == null)
|
if (parsedEpisodeInfo == null)
|
||||||
{
|
{
|
||||||
return null;
|
return new ParseResource
|
||||||
|
{
|
||||||
|
Title = title
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
var remoteEpisode = _parsingService.Map(parsedEpisodeInfo, 0, 0);
|
var remoteEpisode = _parsingService.Map(parsedEpisodeInfo, 0, 0);
|
||||||
|
|
Loading…
Reference in New Issue