Merge branch 'master' into wip-reqhook

This commit is contained in:
Toby 2024-06-16 13:10:23 -07:00
commit 506d8e01b8
2 changed files with 4 additions and 4 deletions

View file

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