diff --git a/internal/webserver/webserver.go b/internal/webserver/webserver.go index 2720137..ae24c17 100755 --- a/internal/webserver/webserver.go +++ b/internal/webserver/webserver.go @@ -262,17 +262,6 @@ func TwitchAdminHandler(response http.ResponseWriter, request *http.Request) { response.WriteHeader(500) response.Header().Add("Content-type", "text/plain") fmt.Fprint(response, "ERROR: Twitch returned not 1 user for the request!\n---\n") - fmt.Fprint(response, usersObject.Data) - fmt.Fprint(response, "\n---\n") - fmt.Fprint(response, body) - fmt.Fprint(response, "\n---\n") - fmt.Fprint(response, usersResponse) - fmt.Fprint(response, "\n---\n") - fmt.Fprint(response, usersObject) - fmt.Fprint(response, "\n---\n") - fmt.Fprint(response, "curl -H 'Authorization: Bearer "+oauthResponse.Access_token+ - "' -H 'Client-ID: "+ircBot.AppCredentials.ClientID+ - " -X GET https://api.twitch.tv/users") return }