From 9db39a481d1291ac78eb1062b5cd4ab3e5752aa5 Mon Sep 17 00:00:00 2001 From: okseby Date: Mon, 28 Aug 2023 21:31:35 -0400 Subject: [PATCH] Fix port on listening message --- bot/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/utils.go b/bot/utils.go index 54c4035..4f56689 100644 --- a/bot/utils.go +++ b/bot/utils.go @@ -23,7 +23,7 @@ func initGitHubClient() { } func listenForWebhook() { - log.Println("Listening on :3333......") + log.Println("Listening on :433......") http.HandleFunc("/", webHandle) http.HandleFunc("/webhook", webhookHandler)