From 30f04f75f21a932f29388ebc2b97dcd8b21d34e3 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Fri, 3 Mar 2023 00:55:05 -0800
Subject: [PATCH] use correct rutorrent rate units

---
 src/widgets/rutorrent/component.jsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/widgets/rutorrent/component.jsx b/src/widgets/rutorrent/component.jsx
index ef3a278f..300a15bd 100644
--- a/src/widgets/rutorrent/component.jsx
+++ b/src/widgets/rutorrent/component.jsx
@@ -34,8 +34,8 @@ export default function Component({ service }) {
   return (
     <Container service={service}>
       <Block label="rutorrent.active" value={active.length} />
-      <Block label="rutorrent.upload" value={t("common.bitrate", { value: upload })} />
-      <Block label="rutorrent.download" value={t("common.bitrate", { value: download })} />
+      <Block label="rutorrent.upload" value={t("common.byterate", { value: upload })} />
+      <Block label="rutorrent.download" value={t("common.byterate", { value: download })} />
     </Container>
   );
 }