mirror of
http://bgp.hk.skcks.cn:10088/github.com/oneclickvirt/ecs
synced 2026-04-20 12:50:58 +08:00
fix:修复错误的格式化字符
This commit is contained in:
@@ -56,8 +56,8 @@ func printTableRow(result pst.SpeedTestResult) {
|
||||
}
|
||||
location = fmt.Sprintf("%s%s", carrier, result.City)
|
||||
}
|
||||
if len(location) > 14 {
|
||||
location = location[:14] + "..."
|
||||
if len(location) > 15 {
|
||||
location = location[:15]
|
||||
}
|
||||
upload := "N/A"
|
||||
if result.UploadMbps > 0 {
|
||||
|
||||
Reference in New Issue
Block a user