BUG: Missing Radarr link button on active movie downloads (admin feature incomplete) #59
Reference in New Issue
Block a user
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?
Summary
The Radarr deep-link button is missing from active movie downloads on the main dashboard.
Administrators who have Radarr configured do not see the Radarr icon/link next to active movie downloads (from Radarr queues, SABnzbd, qBittorrent, etc.), even though the equivalent feature works for Ombi movie requests (after the fix in v1.7.28).
Steps to Reproduce
Expected Behavior
Active movie downloads should display a clickable Radarr icon (similar to how Ombi movie requests now show it after the recent fix) that takes the admin directly to the movie in Radarr.
Actual Behavior
Root Cause Analysis
Confirmed Root Cause
File:
server/routes/dashboard.jsThe enrichment function
decorateRequestsWithArrLinks()is only called for Ombi requests:Active downloads (the main list shown on the dashboard) are built via:
These regular download items (from Sonarr/Radarr queues + download clients) are never passed to
decorateRequestsWithArrLinks().Frontend Impact
File:
client/src/ui/downloads.jsThe Radarr button is rendered only if
download.arrLinkexists:Since
arrLinkis never populated for active movie downloads, the condition is never true.Impact
Proposed Fix
Extend the admin link decoration to also cover active downloads.
Recommended Change in
server/routes/dashboard.jsAfter building
userDownloads, add:Then implement (or reuse)
decorateDownloadsWithArrLinks()inserver/utils/ombiHelpers.js(or a new utility) to addarrLinkandarrTypeto movie/TV downloads based on their source (radarr/sonarr).Additional Notes
fix: resolve missing Sonarr link button on TV request cards) did not address active downloads.Environment
Resolved in commit
13f3d767c5.