debug fix

This commit is contained in:
Piotr Biernat 2024-07-20 15:53:05 +02:00
parent d7dc75c18f
commit 974f82e9be

View File

@ -74,7 +74,7 @@ func (s *Service) GetFullAddr() string {
if s.tls { if s.tls {
proto = "https" proto = "https"
} }
return fmt.Sprintf("%s://%s:%d/", proto, s.Address, s.port) return fmt.Sprintf("%s://%s:%d/", proto, s.domain, s.port)
} }
func (s *Service) Register() error { func (s *Service) Register() error {