fixed unknown variable

This commit is contained in:
an 2018-04-22 11:31:15 +02:00
parent 8ef027800c
commit 80f2f13aee
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ func webhookHandleHTTP(w http.ResponseWriter, r *http.Request) {
return
}
fmt.Println("got webhook payload: ")
for k, v := range webhookData {
for k, v := range data {
fmt.Printf("%s : %v\n", k, v)
}
}