🐛 Fix bug with download speed module

This commit is contained in:
ajnart
2022-09-02 23:45:33 +02:00
parent 0e4a25a68f
commit ca530feb7c

View File

@@ -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);
})