From 2a928f71aed9bdb7f600db59ce8232ed4bb54ec4 Mon Sep 17 00:00:00 2001 From: Arnie97 Date: Thu, 30 Jul 2020 14:10:17 +0800 Subject: [PATCH] fix: show fractions of a second in the correct column --- frontend/render.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/render.go b/frontend/render.go index 9aaa4f4..6bb09d2 100644 --- a/frontend/render.go +++ b/frontend/render.go @@ -119,7 +119,7 @@ func summaryTable(isIPv6 bool, data string, serverName string) string { } // Parse a total of 6 columns from bird summary - lineSplitted := regexp.MustCompile(`(\w+)(\s+)(\w+)(\s+)([\w-]+)(\s+)(\w+)(\s+)([0-9\- :]+)(.*)`).FindStringSubmatch(line) + lineSplitted := regexp.MustCompile(`(\w+)(\s+)(\w+)(\s+)([\w-]+)(\s+)(\w+)(\s+)([0-9\-\. :]+)(.*)`).FindStringSubmatch(line) var row = [6]string{ strings.TrimSpace(lineSplitted[1]), strings.TrimSpace(lineSplitted[3]),