Compare commits

...

1 Commits

Author SHA1 Message Date
6c290eb66b tls fix 2024-07-20 14:43:47 +02:00

View File

@@ -70,9 +70,8 @@ func (s *Service) GetID() string {
}
func (s *Service) GetFullAddr() string {
isTLS := s.port == 443
proto := "http"
if isTLS {
if s.tls {
proto = "https"
}
return fmt.Sprintf("%s://%s:%d/", proto, s.Address, s.port)