fix wrong adaption of code from Radarr

This commit is contained in:
skydel0 2025-03-12 23:42:27 +01:00
parent cb7a0a66c6
commit 02e455b2da

View file

@ -125,7 +125,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications.RssSync
}
}
if (subject.Episodes.FirstOrDefault(x => x.Id == episode.Id) is { HasFile: true })
if (episode is { HasFile: true })
{
EpisodeHistory availableUsableEpisodeHistoryForCustomFormatScore;