This commit is contained in:
2026-03-02 01:46:33 +07:00
parent 3b9c77b422
commit 4280d5376a
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -12,5 +12,5 @@ func NewLinkService() ILinkService {
}
func (s *service) GetTeamClientLink(host string, name string, password string) string {
return fmt.Sprintf("http://%s?name=%s&password=%s", host, url.PathEscape(name), password)
return fmt.Sprintf("%s?name=%s&password=%s", host, url.PathEscape(name), password)
}