fix member list from not populating sometimes

This commit is contained in:
ouwou
2020-12-21 02:18:09 -05:00
parent 31bef80530
commit 5cbbdd344b

View File

@@ -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);