fix(dashboard): render Provider + Seeders columns #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/dashboard-provider-column"
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?
Problem
The dashboard's Provider column is always blank and Seeders always shows 0 (upstream #292, open/unfixed).
Root cause: the torrent row template in
dashboard.jsreadstorrent.debridandtorrent.num_seeds, but the/api/torrentspayload has neither — the actual fields areactive_provider("realdebrid") andseeders. Both cells silently fall back to-/0.Fix
torrent.debrid→torrent.active_providertorrent.num_seeds→torrent.seedersbuild/js/dashboard.jsvianpm run minify-js(lockfile-pinned terser; the other 6 bundles came out byte-identical, so only dashboard.js changes). Both files passnode --check.Purely cosmetic — provider routing is unaffected. Targets the per-arr branch (the currently-deployed
v2.4-perarr-action-betaline, tip5c5fd91);betacarries the same bug if you want it there too.🤖 Generated with Claude Code