mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
Fixed: Cutoff Unmet showing items above lowest accepted quality when upgrades are disabled
(cherry picked from commit c1e5b7f642d03414f7c5587d4db377ef979f2067) Fixes #7301 Fixes #7305
This commit is contained in:
@@ -303,13 +303,25 @@ namespace NzbDrone.Integration.Test
|
||||
return result.MovieFile;
|
||||
}
|
||||
|
||||
public QualityProfileResource EnsureProfileCutoff(int profileId, Quality cutoff)
|
||||
public QualityProfileResource EnsureProfileCutoff(int profileId, Quality cutoff, bool upgradeAllowed)
|
||||
{
|
||||
var needsUpdate = false;
|
||||
var profile = Profiles.Get(profileId);
|
||||
|
||||
if (profile.Cutoff != cutoff.Id)
|
||||
{
|
||||
profile.Cutoff = cutoff.Id;
|
||||
needsUpdate = true;
|
||||
}
|
||||
|
||||
if (profile.UpgradeAllowed != upgradeAllowed)
|
||||
{
|
||||
profile.UpgradeAllowed = upgradeAllowed;
|
||||
needsUpdate = true;
|
||||
}
|
||||
|
||||
if (needsUpdate)
|
||||
{
|
||||
profile = Profiles.Put(profile);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user