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