From e68ad5c3b3ce78132885b326097f20ea4ee05d5e Mon Sep 17 00:00:00 2001 From: olemorud Date: Thu, 8 Dec 2022 23:12:28 +0100 Subject: [PATCH] comment out github link --- src/function.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/function.go b/src/function.go index 9faf3ee..99d5c13 100644 --- a/src/function.go +++ b/src/function.go @@ -122,10 +122,10 @@ func Coffee(writer http.ResponseWriter, request *http.Request) { text += name + " " } - url, ok := os.LookupEnv("GITHUB_URL") - if ok { - text += " (now open source: " + url + ")" - } + //url, ok := os.LookupEnv("GITHUB_URL") + //if ok { + // text += " (now open source: " + url + ")" + //} err = json.NewEncoder(writer).Encode(&reply{Response_type: "comment", Text: text})