Skip to content

Commit

Permalink
fix: Converts Approved Review Count to string
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacsanders committed Oct 20, 2020
1 parent 06364c8 commit ad669ca
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 @@ -70,7 +70,7 @@ func NewVersion(p *PullRequest) Version {
PR: strconv.Itoa(p.Number),
Commit: p.Tip.OID,
CommittedDate: p.Tip.CommittedDate.Time,
ApprovedReviewCount: p.ApprovedReviewCount,
ApprovedReviewCount: strconv.Itoa(p.ApprovedReviewCount),
}
}

Expand Down

0 comments on commit ad669ca

Please sign in to comment.