aboutsummaryrefslogtreecommitdiff
path: root/discord/state.py
diff options
context:
space:
mode:
Diffstat (limited to 'discord/state.py')
-rw-r--r--discord/state.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/state.py b/discord/state.py
index adac7f5f..f23ae78c 100644
--- a/discord/state.py
+++ b/discord/state.py
@@ -601,7 +601,7 @@ class ConnectionState:
def parse_call_create(self, data):
message = self._get_message(data.get('message_id'))
if message is not None:
- call = GroupCall(message=message, **data)
+ call = GroupCall(call=message, **data)
self._calls[data['channel_id']] = call
self.dispatch('call', call)