We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d37a37 commit a0abfe6Copy full SHA for a0abfe6
ui/status.go
@@ -54,7 +54,7 @@ func getBitRate(bytes int) string {
54
txString = fmt.Sprintf("%d MB/s ", bytes/(1<<20))
55
}
56
if bytes >= int(math.Pow(1024, 3)) {
57
- txString = fmt.Sprintf("%d GB/s ", bytes/(1<<20))
+ txString = fmt.Sprintf("%d GB/s ", bytes/(1<<30))
58
59
60
return txString
0 commit comments