fix: incorrect speed conversion base

This commit is contained in:
Toby 2024-06-15 15:42:39 -07:00
parent 4c2a905892
commit a852febc1f
2 changed files with 4 additions and 4 deletions

View file

@ -152,8 +152,8 @@ func formatSpeed(bytes uint32, duration time.Duration, useBytes bool) string {
speed *= 8 speed *= 8
} }
unitIndex := 0 unitIndex := 0
for speed > 1024 && unitIndex < len(units)-1 { for speed > 1000 && unitIndex < len(units)-1 {
speed /= 1024 speed /= 1000
unitIndex++ unitIndex++
} }
return fmt.Sprintf("%.2f %s", speed, units[unitIndex]) return fmt.Sprintf("%.2f %s", speed, units[unitIndex])

View file

@ -976,8 +976,8 @@ func formatSpeed(bw Bandwidth) string {
bwf := float64(bw) bwf := float64(bw)
units := []string{"bps", "Kbps", "Mbps", "Gbps"} units := []string{"bps", "Kbps", "Mbps", "Gbps"}
unitIndex := 0 unitIndex := 0
for bwf > 1024 && unitIndex < len(units)-1 { for bwf > 1000 && unitIndex < len(units)-1 {
bwf /= 1024 bwf /= 1000
unitIndex++ unitIndex++
} }
return fmt.Sprintf("%.2f %s", bwf, units[unitIndex]) return fmt.Sprintf("%.2f %s", bwf, units[unitIndex])