This commit is contained in:
Jackie Elliott 2018-06-15 09:46:34 -07:00
Родитель badbc69cbb
Коммит a083910064
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -31,7 +31,7 @@ func EventListen(c buffalo.Context) error {
return err
}
defer request.Body.Close()
event, err := github.ParseWebHook(github.WebHookType(request), payload)
event, err := github.ParseWebHook(github.WebHookType(request), body)
if err != nil {
log.Printf("could not parse webhook: err=%s\n", err)
return c.Error(http.StatusInternalServerError, err)