mirror of
https://github.com/diamondburned/arikawa.git
synced 2025-01-09 13:37:02 +00:00
Gateway: Fix type of GuildFolder.ID
This commit is contained in:
parent
d290b0d01c
commit
b8f6fbbda9
|
@ -108,7 +108,7 @@ type SettingsChannelOverride struct {
|
||||||
// GuildFolder holds a single folder that you see in the left guild panel.
|
// GuildFolder holds a single folder that you see in the left guild panel.
|
||||||
type GuildFolder struct {
|
type GuildFolder struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
ID string `json:"id"`
|
ID int64 `json:"id"`
|
||||||
GuildIDs []discord.GuildID `json:"guild_ids"`
|
GuildIDs []discord.GuildID `json:"guild_ids"`
|
||||||
Color discord.Color `json:"color"`
|
Color discord.Color `json:"color"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue