From 354976bb01ec568da27f271e3d60e2e416e6d51a Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Sun, 31 Mar 2019 14:17:09 +0200 Subject: [PATCH] website: correct repository URL Signed-off-by: Elias Naur --- website/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/main.go b/website/main.go index cf51b70d..3edf27ec 100644 --- a/website/main.go +++ b/website/main.go @@ -34,7 +34,7 @@ func vanityHandler(w http.ResponseWriter, r *http.Request) { } switch r.URL.Path { case "/": - http.Redirect(w, r, "https://git.sr.ht/~eliasnaur/gio-ui", http.StatusFound) + http.Redirect(w, r, "https://git.sr.ht/~eliasnaur/gio", http.StatusFound) default: http.NotFound(w, r) }