summaryrefslogtreecommitdiff
path: root/discord
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2020-12-21 02:18:09 -0500
committerouwou <26526779+ouwou@users.noreply.github.com>2020-12-21 02:18:09 -0500
commit5cbbdd344bba57b5872b40f4d27250371510b528 (patch)
treebfcb2673dcca6bafbc2a12e11a2c9e6adac7e551 /discord
parent31bef80530edbf622a6678947dc832bc179b52fb (diff)
downloadabaddon-portaudio-5cbbdd344bba57b5872b40f4d27250371510b528.tar.gz
abaddon-portaudio-5cbbdd344bba57b5872b40f4d27250371510b528.zip
fix member list from not populating sometimes
Diffstat (limited to 'discord')
-rw-r--r--discord/discord.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/discord.cpp b/discord/discord.cpp
index b5afec0..bdb8fbb 100644
--- a/discord/discord.cpp
+++ b/discord/discord.cpp
@@ -358,8 +358,8 @@ void DiscordClient::SendLazyLoad(Snowflake id) {
};
msg.Channels = c;
msg.GuildID = *GetChannel(id)->GuildID;
- msg.ShouldGetActivities = false;
- msg.ShouldGetTyping = false;
+ msg.ShouldGetActivities = true;
+ msg.ShouldGetTyping = true;
nlohmann::json j = msg;
m_websocket.Send(j);