From 7b24f584961b5f6027fe8876408e515fbdf2a771 Mon Sep 17 00:00:00 2001 From: "diamondburned (Forefront)" Date: Mon, 17 Feb 2020 13:11:48 -0800 Subject: [PATCH] Gateway: Fixed typo in Request Members data --- gateway/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateway/commands.go b/gateway/commands.go index 548da14..3f8fe14 100644 --- a/gateway/commands.go +++ b/gateway/commands.go @@ -88,7 +88,7 @@ func (g *Gateway) Heartbeat() error { type RequestGuildMembersData struct { GuildID []discord.Snowflake `json:"guild_id"` - UserIDs []discord.Snowflake `json:"user_id,omitempty"` + UserIDs []discord.Snowflake `json:"user_ids,omitempty"` Query string `json:"query,omitempty"` Limit uint `json:"limit"`