From b8f6fbbda955ec6cea8fae8eb72f7be8be49d009 Mon Sep 17 00:00:00 2001 From: Tadeo Kondrak Date: Tue, 21 Jul 2020 15:04:26 -0600 Subject: [PATCH] Gateway: Fix type of GuildFolder.ID --- gateway/ready.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateway/ready.go b/gateway/ready.go index 9e6dc2f..d44af80 100644 --- a/gateway/ready.go +++ b/gateway/ready.go @@ -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"` }