File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,13 @@ class Member(discord.abc.Messageable, _BaseUser):
188
188
If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``.
189
189
activities: Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]
190
190
The activities that the user is currently doing.
191
+
192
+ .. note::
193
+
194
+ Due to a Discord API limitation, a user's Spotify activity may not appear
195
+ if they are listening to a song with a title longer
196
+ than 128 characters. See :issue:`1738` for more information.
197
+
191
198
guild: :class:`Guild`
192
199
The guild that the member belongs to.
193
200
nick: Optional[:class:`str`]
@@ -440,6 +447,12 @@ def activity(self):
440
447
"""Union[:class:`BaseActivity`, :class:`Spotify`]: Returns the primary
441
448
activity the user is currently doing. Could be ``None`` if no activity is being done.
442
449
450
+ .. note::
451
+
452
+ Due to a Discord API limitation, this may be ``None`` if
453
+ the user is listening to a song on Spotify with a title longer
454
+ than 128 characters. See :issue:`1738` for more information.
455
+
443
456
.. note::
444
457
445
458
A user may have multiple activities, these can be accessed under :attr:`activities`.
You can’t perform that action at this time.
0 commit comments