This commit is contained in:
Piotr Biernat 2024-07-20 14:43:47 +02:00
parent 31ce7fc48e
commit 6c290eb66b

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)