Skip to content

Commit

Permalink
Merge pull request #8 from joelhill/score-current-intermission-is-busted
Browse files Browse the repository at this point in the history
current intermission is an int. now fixed.
  • Loading branch information
Joel Hill authored Apr 20, 2019
2 parents 65be52e + ea760c4 commit acac66c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ type Venue struct {
type Score struct {
CurrentInning *int `json:"currentInning"`
CurrentInningHalf *string `json:"currentInningHalf"`
CurrentIntermission *string `json:"currentIntermission"`
CurrentIntermission *int `json:"currentIntermission"`
AwayScoreTotal *int `json:"awayScoreTotal"`
AwayHitsTotal *int `json:"awayHitsTotal"`
AwayErrorsTotal *int `json:"awayErrorsTotal"`
Expand Down

0 comments on commit acac66c

Please sign in to comment.