From 8c461de72abae7235df5b883de38b53a3134bfb4 Mon Sep 17 00:00:00 2001 From: Gronod Date: Wed, 20 May 2026 00:49:26 +0100 Subject: [PATCH] Hide speed when it is 0 to avoid displaying misleading 0 speed --- public/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app.js b/public/app.js index ecdc0f4..67427f8 100644 --- a/public/app.js +++ b/public/app.js @@ -878,7 +878,7 @@ function createDownloadCard(download) { details.appendChild(progressItem); } - if (download.speed !== undefined && download.speed !== null) { + if (download.speed && download.speed > 0) { const speed = createDetailItem('Speed', download.speed); details.appendChild(speed); }