From 3057c3d255e68861ae835580500f4c9deb20975d Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Tue, 27 Aug 2019 22:25:02 -0400 Subject: [PATCH] need to lowercase here --- fun.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fun.go b/fun.go index 1e0435a..424b021 100644 --- a/fun.go +++ b/fun.go @@ -374,7 +374,8 @@ func ontologize(s string) string { p = h[:1] h = h[1:] } - return fmt.Sprintf(`%s%s`, p, serverName, h[1:], h) + return fmt.Sprintf(`%s%s`, p, serverName, + strings.ToLower(h[1:]), h) }) return s }