mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-04-22 08:44:10 +00:00
Fix NameError in GroupChannel.
This commit is contained in:
parent
84dfd7b3e3
commit
ae36008279
@ -369,7 +369,7 @@ class GroupChannel(discord.abc.Messageable, Hashable):
|
||||
self.name = data.get('name')
|
||||
|
||||
try:
|
||||
self.recipients = [state.store_user(u) for u in data['recipients']]
|
||||
self.recipients = [self._state.store_user(u) for u in data['recipients']]
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user