diff options
Diffstat (limited to 'src/discord/store.hpp')
-rw-r--r-- | src/discord/store.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/discord/store.hpp b/src/discord/store.hpp index 6157f09..e53d5c7 100644 --- a/src/discord/store.hpp +++ b/src/discord/store.hpp @@ -50,7 +50,7 @@ public: std::vector<Message> GetMessagesBefore(Snowflake channel_id, Snowflake message_id, size_t limit) const; std::vector<Message> GetPinnedMessages(Snowflake channel_id) const; std::vector<ChannelData> GetActiveThreads(Snowflake channel_id) const; // public - std::vector<Snowflake> GetChannelIDsWithParentID(Snowflake channel_id) const; + std::vector<std::pair<Snowflake, ChannelType>> GetChannelIDsWithParentID(Snowflake channel_id) const; std::unordered_set<Snowflake> GetMembersInGuild(Snowflake guild_id) const; // ^ not the same as GetUsersInGuild since users in a guild may include users who do not have retrieved member data |