Compare commits

..

1 Commits

Author SHA1 Message Date
98d85810f3 register fix 2 2023-07-08 13:02:13 +02:00

View File

@@ -61,7 +61,7 @@ func (s *Service) GetID() string {
}
func (s *Service) GetFullAddr() string {
return fmt.Sprintf("http://%s:%d/", s.domain, s.port)
return fmt.Sprintf("https://%s:%d/", s.domain, s.port)
}
func (s *Service) Register() error {