1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-11-30 08:06:52 +02:00

Fixing email in the JSON deserialization

This commit is contained in:
Don 2015-09-14 10:49:51 -07:00
parent 481055fcfb
commit f5e539a46b

View File

@ -403,13 +403,13 @@ type pushHook struct {
Author struct {
Name string `json:"name"`
Email string `json:"name"`
Email string `json:"email"`
Username string `json:"username"`
} `json:"author"`
Committer struct {
Name string `json:"name"`
Email string `json:"name"`
Email string `json:"email"`
Username string `json:"username"`
} `json:"committer"`
} `json:"head_commit"`