mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-28 15:10:25 +08:00
修复一个流量格式化错误
This commit is contained in:
@@ -35,7 +35,7 @@ func FormatBits(bits int64) string {
|
|||||||
} else if bits < 1000*1000*1000 {
|
} else if bits < 1000*1000*1000 {
|
||||||
return fmt.Sprintf("%.2fMB", float64(bits)/1000/1000)
|
return fmt.Sprintf("%.2fMB", float64(bits)/1000/1000)
|
||||||
} else if bits < 1000*1000*1000*1000 {
|
} else if bits < 1000*1000*1000*1000 {
|
||||||
return fmt.Sprintf("%.2fGB", float64(bits)/1000/10001000)
|
return fmt.Sprintf("%.2fGB", float64(bits)/1000/1000/1000)
|
||||||
} else {
|
} else {
|
||||||
return fmt.Sprintf("%.2fPB", float64(bits)/1000/1000/1000/1000)
|
return fmt.Sprintf("%.2fPB", float64(bits)/1000/1000/1000/1000)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user