Merge pull request #893 from benphelps/fix-892

Fix nzbget download rate units
This commit is contained in:
shamoon 2023-01-28 21:18:37 -08:00 committed by GitHub
commit e5d65f410c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@ export default function Component({ service }) {
return (
<Container service={service}>
<Block label="nzbget.rate" value={t("common.bitrate", { value: statusData.DownloadRate })} />
<Block label="nzbget.rate" value={t("common.byterate", { value: statusData.DownloadRate })} />
<Block
label="nzbget.remaining"
value={t("common.bytes", { value: statusData.RemainingSizeMB * 1024 * 1024 })}