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

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