forked from an/flokati
fixed unknown variable
This commit is contained in:
parent
8ef027800c
commit
80f2f13aee
|
@ -30,7 +30,7 @@ func webhookHandleHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
fmt.Println("got webhook payload: ")
|
fmt.Println("got webhook payload: ")
|
||||||
for k, v := range webhookData {
|
for k, v := range data {
|
||||||
fmt.Printf("%s : %v\n", k, v)
|
fmt.Printf("%s : %v\n", k, v)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue