From cb247186f3cc509b6135472be4fd12809cc80e93 Mon Sep 17 00:00:00 2001 From: Lan Tian Date: Fri, 27 Mar 2020 13:06:05 +0800 Subject: [PATCH] Remove duplicate ASN field from bgpmap --- frontend/bgpmap.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/bgpmap.go b/frontend/bgpmap.go index 0ace7e9..e6b9cdc 100644 --- a/frontend/bgpmap.go +++ b/frontend/bgpmap.go @@ -10,7 +10,11 @@ func getASNRepresentation(asn string) string { if records, err := net.LookupTXT(fmt.Sprintf("AS%s.%s", asn, setting.dnsInterface)); err != nil { return fmt.Sprintf("AS%s", asn) } else { - return fmt.Sprintf("AS%s\\n%s", asn, strings.Join(records, " ")) + result := strings.Join(records, " ") + if resultSplit := strings.Split(result, " | "); len(resultSplit) > 1 { + result = strings.Join(resultSplit[1:], "\\n") + } + return fmt.Sprintf("AS%s\\n%s", asn, result) } }