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
1 changed files with 1 additions and 1 deletions

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"`
}