Browse Source

Fix PushEvent JSON representation of size attribute

Tobias Schmidt 12 years ago
parent
commit
3a1d485aee
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      github/activity_events.go

+ 1
- 1
github/activity_events.go View File

@ -47,7 +47,7 @@ type PushEvent struct {
PushID *int `json:"push_id,omitempty"`
Head *string `json:"head,omitempty"`
Ref *string `json:"ref,omitempty"`
Size *int `json:"ref,omitempty"`
Size *int `json:"size,omitempty"`
Commits []PushEventCommit `json:"commits,omitempty"`
Repo *Repository `json:"repository,omitempty"`
}


Loading…
Cancel
Save