| commit | c85504d6686fbe77002de91cf7be8acc7a7788e7 | [log] [tgz] |
|---|---|---|
| author | Giorgi Lekveishvili <lekva@gl-mbp-m1-max.local> | Wed Dec 20 19:29:47 2023 +0400 |
| committer | Giorgi Lekveishvili <lekva@gl-mbp-m1-max.local> | Wed Dec 20 19:29:47 2023 +0400 |
| tree | 6ea555622896389f6caf29c12316b0b9a8f11b0f | |
| parent | 37c6bcd085bff911beaecd223a9bf2f508d31a3b [diff] |
env: fix env key redirect
diff --git a/core/installer/welcome/env.go b/core/installer/welcome/env.go index 2595028..10a2ade 100644 --- a/core/installer/welcome/env.go +++ b/core/installer/welcome/env.go
@@ -329,5 +329,5 @@ s.tasks[key] = t s.dns[key] = dns go t.Start() - http.Redirect(w, r, fmt.Sprintf("/env/key", key), http.StatusSeeOther) + http.Redirect(w, r, fmt.Sprintf("/env/%s", key), http.StatusSeeOther) }