fix: fix type of PollOption.VotesCount

This commit is contained in:
Dan Anglin 2024-06-04 09:54:40 +01:00
parent 0f7668a046
commit 66c530d524
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -83,7 +83,7 @@ type Poll struct {
type PollOption struct { type PollOption struct {
Title string `json:"title"` Title string `json:"title"`
VotesCount string `json:"votes_count"` VotesCount int `json:"votes_count"`
} }
type StatusReblogged struct { type StatusReblogged struct {