skip weird long tags

master
Ted Unangst 5 years ago
parent 39ff5b5aa8
commit e5d08de8fb

@ -679,6 +679,9 @@ func thelistingoftheontologies(w http.ResponseWriter, r *http.Request) {
log.Printf("error scanning ont: %s", err)
continue
}
if len(o.Name) > 24 {
continue
}
o.Name = o.Name[1:]
onts = append(onts, o)
}

Loading…
Cancel
Save