mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 04:22:30 +01:00
Don't throw error when episode title matching doesn't find a match
This commit is contained in:
parent
f13a4b5aa5
commit
c58d607349
@ -59,5 +59,15 @@ public void should_prefer_longer_match()
|
||||
.Should()
|
||||
.Be(expectedTitle);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_return_null_when_no_match_is_found()
|
||||
{
|
||||
GivenEpisodesWithTitles();
|
||||
|
||||
Subject.FindEpisodeByTitle(1, 1, "The.Walking.Dead.S04.Special.Inside.The.Walking.Dead.Walker.University.720p.HDTV.x264-W4F")
|
||||
.Should()
|
||||
.BeNull();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -109,7 +109,7 @@ public Episode FindEpisodeByTitle(int seriesId, int seasonNumber, string release
|
||||
var normalizedReleaseTitle = Parser.Parser.NormalizeEpisodeTitle(releaseTitle).Replace(".", " ");
|
||||
var episodes = _episodeRepository.GetEpisodes(seriesId, seasonNumber);
|
||||
|
||||
var query = episodes.Select(
|
||||
var matches = episodes.Select(
|
||||
episode => new
|
||||
{
|
||||
Position = normalizedReleaseTitle.IndexOf(Parser.Parser.NormalizeEpisodeTitle(episode.Title), StringComparison.CurrentCultureIgnoreCase),
|
||||
@ -121,7 +121,12 @@ public Episode FindEpisodeByTitle(int seriesId, int seasonNumber, string release
|
||||
.ThenByDescending(e => e.Length)
|
||||
.ToList();
|
||||
|
||||
return query.First().Episode;
|
||||
if (matches.Any())
|
||||
{
|
||||
return matches.First().Episode;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public List<Episode> EpisodesWithFiles(int seriesId)
|
||||
|
Loading…
Reference in New Issue
Block a user