From ca530feb7c0a9ce0a3e05780e0bf54ce4e960935 Mon Sep 17 00:00:00 2001 From: ajnart Date: Fri, 2 Sep 2022 23:45:33 +0200 Subject: [PATCH] :bug: Fix bug with download speed module --- src/modules/torrents/TotalDownloadsModule.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/torrents/TotalDownloadsModule.tsx b/src/modules/torrents/TotalDownloadsModule.tsx index 1dbb44d66..95f64852e 100644 --- a/src/modules/torrents/TotalDownloadsModule.tsx +++ b/src/modules/torrents/TotalDownloadsModule.tsx @@ -49,7 +49,7 @@ export default function TotalDownloadsComponent() { const interval = setSafeInterval(() => { // Send one request with each download service inside axios - .post('/api/modules/downloads') + .post('/api/modules/torrents') .then((response) => { setTorrents(response.data); })