Browse Source

url params to invites get rather than json.

pull/159/head
Luke 6 years ago
parent
commit
da0e99a501
  1. 2
      disco/api/client.py

2
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):

Loading…
Cancel
Save