diff --git a/frontend/template.go b/frontend/template.go
index 3e18a59..6e3710c 100644
--- a/frontend/template.go
+++ b/frontend/template.go
@@ -201,9 +201,11 @@ func smartWriter(w http.ResponseWriter, s string) {
// Bird will output ASNs later
isASes = true
lineFormatted += word
- } else if isASes && isNumber(word) {
- // Bird is outputing ASNs, ass whois for them
- lineFormatted += "" + word + ""
+ } else if isASes && isNumber(strings.Trim(word, "()")) {
+ // Remove brackets in path caused by confederation
+ wordNum := strings.Trim(word, "()")
+ // Bird is outputing ASNs, add whois for them
+ lineFormatted += "" + word + ""
} else {
// Just an ordinary word, print it and done
lineFormatted += word