From eaccee2f47f09019c0896c2d7a2ca7e18b5a40eb Mon Sep 17 00:00:00 2001 From: Leon Mika Date: Thu, 26 Dec 2024 07:50:52 +1100 Subject: [PATCH] Fixed URL to workpad.dev --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index fd48b8c..be563ad 100644 --- a/main.go +++ b/main.go @@ -21,7 +21,7 @@ func main() { r := http.NewServeMux() r.Handle("media.lmika.org/", redirectTo("https://pub-d9610a73a30e4060aaf007864420dd0f.r2.dev")) r.Handle("folio.red/", redirectToJust("https://lmika.org/categories/old-projects/")) - r.Handle("workpad.net/", redirectToJust("https://lmika.org/categories/workpad/")) + r.Handle("workpad.dev/", redirectToJust("https://lmika.org/categories/workpad/")) svr := http.Server{ Addr: fmt.Sprintf(":%v", port),