aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/channel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/channel.py b/discord/channel.py
index af11eea2..f91879f4 100644
--- a/discord/channel.py
+++ b/discord/channel.py
@@ -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