mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-02 22:57:34 -05:00
Radarr can't grab any release from HeBits tracker #9340
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#9340
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 @Kirill200889 on GitHub (Jan 10, 2026).
Is there an existing issue for this?
Current Behavior
Hey team :)
First of all, thank you very much for maintaining and contributing to this amazing project.
Since approx. a month ago, radarr can't grab any release from the HeBits tracker. The search works and it displays results from HeBits. Tracker testing works too. However, it can't grab any release with the following error:
[v6.0.4.10291] MonoTorrent.TorrentException: Invalid torrent file specified ---> MonoTorrent.BEncoding.BEncodingException: Illegal BEncodedDictionary. The attributes are not ordered correctly. Old key: comment, New key: announceI believe something has been changed on HeBits side and the 'monotorrent' which wasn't updated for two years can't handle it or something.
Can it be checked please?
Expected Behavior
It should be able to grab releases from HeBits, it worked before.
Steps To Reproduce
Try to grab any release in radarr.
Environment
What branch are you running?
Master
Trace Logs? Not Optional
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 (Jan 10, 2026):
It's not a Radarr issues, and also not quite a MonoTorrent as the library just imposes the Bencode specifications.
https://code.google.com/archive/p/bencode-net/wikis/BEncode.wiki
@Kirill200889 commented on GitHub (Jan 10, 2026):
Thank you for looking into it! Is there anything I can do on my side to fix it?
@mynameisbogdan commented on GitHub (Jan 10, 2026):
Sadly this needs to addressed by the tracker to follow the BEncode specifications and sort the dictionary.
I'm not aware of an app that might fix this on fly, and would not be possible to hook it to Radarr anyway.
@Kirill200889 commented on GitHub (Jan 10, 2026):
@mynameisbogdan
Thank you for the right direction. Checked the tracker's forum, found many threads.
The last update on the 17th of November, broke it. Unfortunately, they are not going to fix it, since "the tracker isn't supposed or planned to work with the *Arrs"... That's sad.
@KovaLavan commented on GitHub (Jan 27, 2026):
I ran into the same issue specifically with HeBits.
In my case the torrent files returned by HeBits download fine and work when added
manually to qBittorrent, but Radarr fails with MonoTorrent parsing errors
(e.g.
Invalid torrent file specified,BEncodingException).As a workaround, I built a small reverse proxy that sits between Radarr/Sonarr
and the Torznab indexer (Prowlarr/Jackett). It normalizes non-canonical bencoded
.torrent files before Radarr sees them, without modifying the info dictionary
or infohash (safe for private trackers).
This avoids patching Radarr or MonoTorrent and allows grabs from HeBits to succeed.
Docker + usage:
https://hub.docker.com/r/kovalavan/arr-monotorrent-fix
Source:
https://github.com/KovaLavan/arr-monotorrent-fix
@sagipael commented on GitHub (Feb 5, 2026):
Thanks!
Working like a charm