mirror of https://gitlab.com/litecord/litecord.git
gateway: add hack for Request Guild Members
This commit is contained in:
parent
a5c52f5a2c
commit
2b3f1ac48c
|
|
@ -934,7 +934,10 @@ class GatewayWebsocket:
|
||||||
validate(payload_copy, REQ_GUILD_SCHEMA)
|
validate(payload_copy, REQ_GUILD_SCHEMA)
|
||||||
|
|
||||||
data = payload["d"]
|
data = payload["d"]
|
||||||
gids = data["guild_id"]
|
gids = data.get("guild_id")
|
||||||
|
# Discord actually sent this??
|
||||||
|
if gids is None:
|
||||||
|
return
|
||||||
|
|
||||||
uids, query, limit, presences = (
|
uids, query, limit, presences = (
|
||||||
data.get("user_ids", []),
|
data.get("user_ids", []),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue