diff --git a/src/components/modules/downloads/DownloadsModule.tsx b/src/components/modules/downloads/DownloadsModule.tsx index 4b3b6b24d..83390c9a9 100644 --- a/src/components/modules/downloads/DownloadsModule.tsx +++ b/src/components/modules/downloads/DownloadsModule.tsx @@ -81,7 +81,9 @@ export default function DownloadComponent() { ); // Loop over qBittorrent torrents merging with deluge torrents const torrents: NormalizedTorrent[] = []; - delugeTorrents.forEach((torrent) => torrents.push(torrent)); + delugeTorrents.forEach((delugeTorrent) => + torrents.push({ ...delugeTorrent, progress: delugeTorrent.progress / 100 }) + ); qBittorrentTorrents.forEach((torrent) => torrents.push(torrent)); const rows = torrents.map((torrent) => {