From b40d0084007544ffcb44911f91ae3c04810bd2db Mon Sep 17 00:00:00 2001 From: Marco Kreeft Date: Fri, 11 Apr 2025 09:23:34 +0200 Subject: [PATCH] Removed upload --- src/components/services/SABnzbd.vue | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/components/services/SABnzbd.vue b/src/components/services/SABnzbd.vue index 674a1f7..fd14b13 100644 --- a/src/components/services/SABnzbd.vue +++ b/src/components/services/SABnzbd.vue @@ -29,10 +29,6 @@

{{ downRate }} - -

- {{ upRate }} -

@@ -82,9 +78,6 @@ export default { downRate() { return displayRate(this.dlSpeed); }, - upRate() { - return displayRate(this.ulSpeed); - }, }, created() { const downloadInterval = parseInt(this.item.downloadInterval, 10) || 0; @@ -106,13 +99,6 @@ export default { // Fetching download speed from "speed" (convert to KB/s if needed) this.dlSpeed = parseFloat(response.queue.speed) * 1024; // Convert MB to KB - // Alternatively, you can also use kbpersec directly - // this.dlSpeed = parseFloat(response.queue.kbpersec); - - // For upload speed, you would need a corresponding field in the API response. - // Assuming there's no direct upload speed in the response, you can modify as needed. - this.ulSpeed = 0; // Placeholder for upload speed (API might need to provide this) - } catch (e) { this.error = true; console.error(e);