1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

New: Added support for AHD User Release indexer flag (#4599)

- Added missing AHD_Internal to the decision maker to increase the score for it

Fixes #3770
This commit is contained in:
austinwbest
2020-07-17 00:01:22 -04:00
committed by GitHub
parent 3a0aa51cbf
commit 5389c86cde
3 changed files with 9 additions and 1 deletions
@@ -205,9 +205,11 @@ namespace NzbDrone.Core.DecisionEngine
case IndexerFlags.PTP_Approved:
case IndexerFlags.PTP_Golden:
case IndexerFlags.HDB_Internal:
case IndexerFlags.AHD_Internal:
score += 2;
break;
case IndexerFlags.G_Halfleech:
case IndexerFlags.AHD_UserRelease:
score += 1;
break;
}