1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2025-01-08 04:57:31 +00:00

Gateway: Fix type of GuildFolder.ID

This commit is contained in:
Tadeo Kondrak 2020-07-21 15:04:26 -06:00 committed by diamondburned
parent d290b0d01c
commit b8f6fbbda9

View file

@ -108,7 +108,7 @@ type SettingsChannelOverride struct {
// GuildFolder holds a single folder that you see in the left guild panel.
type GuildFolder struct {
Name string `json:"name"`
ID string `json:"id"`
ID int64 `json:"id"`
GuildIDs []discord.GuildID `json:"guild_ids"`
Color discord.Color `json:"color"`
}