diff options
Diffstat (limited to 'discord/client.py')
| -rw-r--r-- | discord/client.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/discord/client.py b/discord/client.py index 6304fb4e..2c5ed69c 100644 --- a/discord/client.py +++ b/discord/client.py @@ -179,7 +179,13 @@ class Client: @property def private_channels(self): - """List[:class:`abc.PrivateChannel`]: The private channels that the connected client is participating on.""" + """List[:class:`abc.PrivateChannel`]: The private channels that the connected client is participating on. + + .. note:: + + This returns only up to 128 most recent private channels due to an internal working + on how Discord deals with private channels. + """ return self._connection.private_channels @property |