Browse Source

Document that widget members may be incomplete.

See https://github.com/discordapp/discord-api-docs/issues/1287
pull/2494/head
Rapptz 5 years ago
parent
commit
6847f13198
  1. 8
      discord/widget.py

8
discord/widget.py

@ -178,6 +178,14 @@ class Widget:
members: Optional[List[:class:`Member`]] members: Optional[List[:class:`Member`]]
The online members in the server. Offline members The online members in the server. Offline members
do not appear in the widget. do not appear in the widget.
.. note::
Due to a Discord limitation, if this data is available
the users will be "anonymized" with linear IDs and discriminator
information being incorrect. Likewise, the number of members
retrieved is capped.
""" """
__slots__ = ('_state', 'channels', '_invite', 'id', 'members', 'name') __slots__ = ('_state', 'channels', '_invite', 'id', 'members', 'name')

Loading…
Cancel
Save