Fix filesize formatting edge cases
1024 bytes should be "1.0 KiB" not "1024.0 B"
Cette révision appartient à :
Parent
ac33a734fd
révision
a17813f01b
1 fichiers modifiés avec 4 ajouts et 4 suppressions
|
@ -7,16 +7,16 @@ import (
|
||||||
func FormatFilesize(bytes int64) string {
|
func FormatFilesize(bytes int64) string {
|
||||||
var unit string
|
var unit string
|
||||||
var value float64
|
var value float64
|
||||||
if bytes > 1024*1024*1024*1024 {
|
if bytes >= 1024*1024*1024*1024 {
|
||||||
unit = "TiB"
|
unit = "TiB"
|
||||||
value = float64(bytes) / (1024*1024*1024*1024)
|
value = float64(bytes) / (1024*1024*1024*1024)
|
||||||
} else if bytes > 1024*1024*1024 {
|
} else if bytes >= 1024*1024*1024 {
|
||||||
unit = "GiB"
|
unit = "GiB"
|
||||||
value = float64(bytes) / (1024*1024*1024)
|
value = float64(bytes) / (1024*1024*1024)
|
||||||
} else if bytes > 1024*1024 {
|
} else if bytes >= 1024*1024 {
|
||||||
unit = "MiB"
|
unit = "MiB"
|
||||||
value = float64(bytes) / (1024*1024)
|
value = float64(bytes) / (1024*1024)
|
||||||
} else if bytes > 1024 {
|
} else if bytes >= 1024 {
|
||||||
unit = "KiB"
|
unit = "KiB"
|
||||||
value = float64(bytes) / (1024)
|
value = float64(bytes) / (1024)
|
||||||
} else {
|
} else {
|
||||||
|
|
Référencer dans un nouveau ticket