1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

Fixed: Correct messaging when release is not upgrade

Fixes #7963
This commit is contained in:
Qstick
2023-01-08 20:24:13 -06:00
parent 386b33b624
commit f0d10fe1cd
2 changed files with 218 additions and 1 deletions
@@ -144,7 +144,13 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
return true;
}
return false;
if ((isQualityUpgrade || isCustomFormatUpgrade) && !qualityProfile.UpgradeAllowed)
{
_logger.Debug("Quality profile does not allow upgrades, skipping");
return false;
}
return true;
}
}
}