skip weird long tags

Ted Unangst 5 years ago
parent 2144503757
commit c3e79b684b

@ -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