aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2019-05-27 04:04:06 -0400
committerRapptz <[email protected]>2019-05-27 04:04:06 -0400
commit96dc6f0c1169a610f6be9072da4e134626ada566 (patch)
treeb92d4d83e5b30afe3cbc5532d75a959ca25e5c61
parentMake __repr__ slightly more detailed and add a few missing ones. (diff)
downloaddiscord.py-96dc6f0c1169a610f6be9072da4e134626ada566.tar.xz
discord.py-96dc6f0c1169a610f6be9072da4e134626ada566.zip
Add note that Messageable.pins does not contain Message.reactions
Fix for #2189
-rw-r--r--discord/abc.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/discord/abc.py b/discord/abc.py
index 6c0350db..6514a95b 100644
--- a/discord/abc.py
+++ b/discord/abc.py
@@ -893,6 +893,12 @@ class Messageable(metaclass=abc.ABCMeta):
Returns a :class:`list` of :class:`.Message` that are currently pinned.
+ .. note::
+
+ Due to a limitation with the Discord API, the :class:`Message`
+ objects returned by this method do not contain complete
+ :attr:`Message.reactions` data.
+
Raises
-------
:exc:`.HTTPException`