1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-24 23:23:21 +00:00

Fixed: Pushed releases should be stored as pushed release

Closes #8246

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2023-04-22 23:33:29 -05:00
parent 91f1fd9dd0
commit c3f30fb237

View file

@ -47,7 +47,7 @@ public DownloadDecisionMaker(IEnumerable<IDecisionEngineSpecification> specifica
public List<DownloadDecision> GetRssDecision(List<ReleaseInfo> reports, bool pushedRelease = false)
{
return GetDecisions(reports).ToList();
return GetDecisions(reports, pushedRelease).ToList();
}
public List<DownloadDecision> GetSearchDecision(List<ReleaseInfo> reports, SearchCriteriaBase searchCriteriaBase)