From ac31bc6b94e422b929e63437696994b17002334d Mon Sep 17 00:00:00 2001 From: ouwou <26526779+ouwou@users.noreply.github.com> Date: Mon, 22 Mar 2021 01:30:51 -0400 Subject: basic member verification for guilds that set rules --- discord/store.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'discord/store.cpp') diff --git a/discord/store.cpp b/discord/store.cpp index 44af4cd..6dcaabb 100644 --- a/discord/store.cpp +++ b/discord/store.cpp @@ -449,7 +449,7 @@ std::optional Store::GetGuild(Snowflake id) const { for (const auto &id : nlohmann::json::parse(tmp).get>()) ret.Emojis->emplace_back().ID = id; Get(m_get_guild_stmt, 14, tmp); - ret.Features = nlohmann::json::parse(tmp).get>(); + ret.Features = nlohmann::json::parse(tmp).get>(); Get(m_get_guild_stmt, 15, ret.MFALevel); Get(m_get_guild_stmt, 16, ret.ApplicationID); Get(m_get_guild_stmt, 17, ret.IsWidgetEnabled); -- cgit v1.2.3