From 97f4ca5229f26d550ed12e39b6cd0b1df7b1af16 Mon Sep 17 00:00:00 2001 From: Ducky Date: Sat, 6 Jul 2024 23:51:59 +0100 Subject: [PATCH] Add users manually to redirects --- main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.go b/main.go index ce958f0..6492c6f 100644 --- a/main.go +++ b/main.go @@ -85,6 +85,9 @@ func main() { redirects["rumble@gearheads.social"] = []string{"rumble", "rubber.social"} redirects["uniformgearhead@gearheads.social"] = []string{"uniformgearhead", "gear.pictures"} redirects["superpsyze@gearheads.social"] = []string{"superpsyze", "rubber.social"} + redirects["GaySkaterCaster@gearheads.social"] = []string{"GaySkaterFeet", "kinky.business"} + redirects["wheeeehe@gearheads.social"] = []string{"pluisje", "rubber.social"} + redirects["JonnyNL@gearheads.social"] = []string{"JonnyNL", "gear.pictures"} http.HandleFunc("/.well-known/webfinger", HandleWebfinger) http.ListenAndServe(":8888", nil)