diff --git a/discord/channel.py b/discord/channel.py index af11eea28..f91879f48 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