From 49dd82f3027be6782fd0eda119dd5c9032d33efa Mon Sep 17 00:00:00 2001 From: Dipun Mistry Date: Sun, 4 Sep 2022 22:25:18 +0100 Subject: [PATCH] 'nother bug fix --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index fa18222..1f2e873 100644 --- a/main.go +++ b/main.go @@ -42,7 +42,7 @@ func main() { port := os.Getenv("HOST_PORT") if len(port) == 0 { - port := "9000" + port = "9000" } err := http.ListenAndServe(":" + port, mux)