diff options
Diffstat (limited to 'discord/store.cpp')
-rw-r--r-- | discord/store.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<GuildData> Store::GetGuild(Snowflake id) const { for (const auto &id : nlohmann::json::parse(tmp).get<std::vector<Snowflake>>()) ret.Emojis->emplace_back().ID = id; Get(m_get_guild_stmt, 14, tmp); - ret.Features = nlohmann::json::parse(tmp).get<std::vector<std::string>>(); + ret.Features = nlohmann::json::parse(tmp).get<std::unordered_set<std::string>>(); Get(m_get_guild_stmt, 15, ret.MFALevel); Get(m_get_guild_stmt, 16, ret.ApplicationID); Get(m_get_guild_stmt, 17, ret.IsWidgetEnabled); |