From 3b646eeeda6a451355f20fba35e948075ac27bbf Mon Sep 17 00:00:00 2001 From: spiritlhl <103393591+spiritLHLS@users.noreply.github.com> Date: Tue, 13 Jan 2026 19:35:39 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E5=A4=8D=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E7=9A=84=E6=A0=BC=E5=BC=8F=E5=8C=96=E5=AD=97=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/tests/speed.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/tests/speed.go b/internal/tests/speed.go index c799f95a..9158e4de 100644 --- a/internal/tests/speed.go +++ b/internal/tests/speed.go @@ -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 {