this repo has no description
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(server): make certificate lowercase

Signed-off-by: Xe Iaso <me@xeiaso.net>

+1
+1
server/route.go
··· 144 144 145 145 // GetCertificate gets a certificate. 146 146 func (rt *RoutingTable) GetCertificate(sni string) (*tls.Certificate, error) { 147 + sni = strings.ToLower(sni) 147 148 slog.Debug("getting cert", "sni", sni) 148 149 hostCerts, ok := rt.certificatesByHost[sni] 149 150 if ok {