Skip to content
Snippets Groups Projects
Commit a6cd84aa authored by Yoan VALLET's avatar Yoan VALLET
Browse files

Add missing dot in redirect url

parent 93c17a1f
Branches
No related tags found
No related merge requests found
Pipeline #5827 passed
...@@ -138,7 +138,7 @@ func main() { ...@@ -138,7 +138,7 @@ func main() {
usagePointId := query.Get("usage_point_id") usagePointId := query.Get("usage_point_id")
cozyURL := "https://" + host + *cozyDomain + *cozyRedirectURI cozyURL := "https://" + host + "." + *cozyDomain + *cozyRedirectURI
redir := cozyURL + "?code=" + code + "&state=" + state + "&usage_point_id=" + usagePointId redir := cozyURL + "?code=" + code + "&state=" + state + "&usage_point_id=" + usagePointId
log.Debug("Redirect to -", redir) log.Debug("Redirect to -", redir)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment