frontend: handle confederation brackets in smartWriter
This commit is contained in:
parent
fe42879d20
commit
d413de8563
@ -201,9 +201,11 @@ func smartWriter(w http.ResponseWriter, s string) {
|
|||||||
// Bird will output ASNs later
|
// Bird will output ASNs later
|
||||||
isASes = true
|
isASes = true
|
||||||
lineFormatted += word
|
lineFormatted += word
|
||||||
} else if isASes && isNumber(word) {
|
} else if isASes && isNumber(strings.Trim(word, "()")) {
|
||||||
// Bird is outputing ASNs, ass whois for them
|
// Remove brackets in path caused by confederation
|
||||||
lineFormatted += "<a href=\"/whois/AS" + word + "\">" + word + "</a>"
|
wordNum := strings.Trim(word, "()")
|
||||||
|
// Bird is outputing ASNs, add whois for them
|
||||||
|
lineFormatted += "<a href=\"/whois/AS" + wordNum + "\">" + word + "</a>"
|
||||||
} else {
|
} else {
|
||||||
// Just an ordinary word, print it and done
|
// Just an ordinary word, print it and done
|
||||||
lineFormatted += word
|
lineFormatted += word
|
||||||
|
Loading…
x
Reference in New Issue
Block a user