From 90d94d93303ada2cf8ca95ee03b48ab9bfe8cfc5 Mon Sep 17 00:00:00 2001 From: spiral Date: Sat, 10 Dec 2022 16:51:58 +0000 Subject: [PATCH] fix(web-proxy): wrong api redirect --- services/web-proxy/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/web-proxy/main.go b/services/web-proxy/main.go index 5b39aa19..6ae412c0 100644 --- a/services/web-proxy/main.go +++ b/services/web-proxy/main.go @@ -76,7 +76,7 @@ func (p ProxyHandler) ServeHTTP(rw http.ResponseWriter, r *http.Request) { } if r.URL.Path == "/" { - http.Redirect(rw, r, "https://pluralkit.me", http.StatusFound) + http.Redirect(rw, r, "https://pluralkit.me/api", http.StatusFound) return }