From da0e99a5019d2590b15d1c2e9340d8d381b91910 Mon Sep 17 00:00:00 2001 From: Luke Date: Thu, 24 Oct 2019 20:29:56 +0100 Subject: [PATCH] url params to invites get rather than json. --- disco/api/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/api/client.py b/disco/api/client.py index ef6a6fa..40f4c51 100644 --- a/disco/api/client.py +++ b/disco/api/client.py @@ -585,7 +585,7 @@ class APIClient(LoggingClass): return Channel.create(self.client, r.json()) def invites_get(self, invite, with_counts=None): - r = self.http(Routes.INVITES_GET, dict(invite=invite), json=optional(with_counts=with_counts)) + r = self.http(Routes.INVITES_GET, dict(invite=invite), params=optional(with_counts=with_counts)) return Invite.create(self.client, r.json()) def invites_delete(self, invite, reason=None):