mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 11:48:26 -07:00
minor parsing fix
This commit is contained in:
parent
0069b29f88
commit
bb37444a99
2 changed files with 3 additions and 3 deletions
|
@ -116,7 +116,7 @@ namespace NzbDrone.Core.Parser
|
|||
if (series.SeriesType == SeriesTypes.Standard)
|
||||
{
|
||||
_logger.Warn("Found daily-style episode for non-daily series: {0}.", series);
|
||||
return null;
|
||||
return result;
|
||||
}
|
||||
|
||||
var episodeInfo = GetDailyEpisode(series, parsedEpisodeInfo.AirDate, searchCriteria);
|
||||
|
@ -206,7 +206,7 @@ namespace NzbDrone.Core.Parser
|
|||
}
|
||||
|
||||
private Series GetSeries(ParsedEpisodeInfo parsedEpisodeInfo, int tvRageId, SearchCriteriaBase searchCriteria)
|
||||
{
|
||||
{
|
||||
var tvdbId = _sceneMappingService.GetTvDbId(parsedEpisodeInfo.SeriesTitle);
|
||||
|
||||
if (tvdbId.HasValue)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue