mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-02 22:57:34 -05:00
Prefer Indexer Flag not working as expected #9271
Labels
No labels
Area: API
Area: Database
Area: Db-migration
Area: Download Clients
Area: Extras
Area: Import Lists
Area: Indexer
Area: Metadata API
Area: Notifications
Area: Organizer
Area: Parser
Area: Scanning
Area: Tooling
Area: UI
Area: Unit Tests
On Hold: MetadataAPI Blocking
On Hold: MetadataAPI Blocking
Priority: High
Priority: Low
Priority: Medium
Status: Accepted
Status: Cannot Reproduce
Status: Confirmed
Status: Help Wanted
Status: In Progress
Status: Indexer - need invite
Status: Info Needed
Status: Investigating
Status: Logs Needed
Status: Maybe One Day
Status: Needs Triage
Status: On Hold
Status: Ready for Review
Status: Unlikely
Status: Waiting for OP
Status: Won't Fix
Type: Bug
Type: Documentation
Type: Duplicate
Type: Enhancement
Type: External Bug
Type: Feature Request
Type: Regression
Type: Support
Type: Support.
conflict
lidarr-pull
no-conflict
not-pulled
readarr-pull
readarr-pull
sonarr upstream
sonarr-pull
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Radarr#9271
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @deecypher on GitHub (Sep 23, 2025).
Is there an existing issue for this?
Current Behavior
According to my review of the DownloadDecisionComparer, Radarr decides what to grab in this order: Quality → CustomFormatScore → Protocol → IndexerPriority → IndexerFlags → PeersIfTorrent → AgeIfUsenet → Size.
In my case, most of the candidates were from the same release group and otherwise identical. Everything compared equally until the process reached IndexerFlags. One release had a partial freeleech flag, the others did not.
I have “Prefer Indexer Flags” disabled, so I expected Radarr to ignore the flag and move on to the next variable, peers. Based on that, the torrent with the higher peer count should have been chosen. Instead, Radarr picked the flagged torrent, which suggests that the “Prefer Indexer Flags” setting isn’t being respected.
Expected Behavior
Steps To Reproduce
Environment
What branch are you running?
Master
Trace Logs? Not Optional
Trace Logs: radarr.trace.txt
Trace Logs have been provided as applicable. Reports will be closed if the required logs are not provided.
trace- that are relevant and show this issue.@mynameisbogdan commented on GitHub (Sep 23, 2025):
The setting works as intended, but the seeders and peers are sorted using rounded log10 values so it's not always the bigger value wins. Meaning any seeders between 32 and 316 would be counted as 2, thus all your releases from the search would have the same priority in this regard.
Also you sorted by peers in the screenshot, which is not the default sorting that Radarr uses for download ranking.