Fix permissions type for UserGuild

This commit is contained in:
Carson Hoffman 2021-01-20 20:19:51 -05:00
parent 0f0aaad011
commit 90531dc713
No known key found for this signature in database
GPG key ID: 05B660CB452C657F

View file

@ -611,7 +611,7 @@ type UserGuild struct {
Name string `json:"name"` Name string `json:"name"`
Icon string `json:"icon"` Icon string `json:"icon"`
Owner bool `json:"owner"` Owner bool `json:"owner"`
Permissions int `json:"permissions"` Permissions int64 `json:"permissions,string"`
} }
// A GuildParams stores all the data needed to update discord guild settings // A GuildParams stores all the data needed to update discord guild settings