frontend: for DN42 also filter whois lines beginning with space

This commit is contained in:
Lan Tian 2020-07-10 00:03:19 +08:00
parent fc098c7d50
commit f2fbfed412
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22

View File

@ -14,7 +14,7 @@ func dn42WhoisFilter(whois string) string {
filteredPrefix := []string{
"descr:", "remarks:", "ds-rdata:", "auth:", "country:",
"nserver:", "status:", "pgp-fingerprint:", "mp-import:", "mp-export:",
"members:", "key:", "inetnum:", "inet6num:",
"members:", "key:", "inetnum:", "inet6num:", " ",
}
for _, s := range strings.Split(whois, "\n") {
if len(s) == 0 {