fix: show fractions of a second in the correct column

This commit is contained in:
Arnie97 2020-07-30 14:10:17 +08:00 committed by Lan Tian
parent 7b1dc6718d
commit 2a928f71ae
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22

View File

@ -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]),