Browse Source

Fix bug with logs_from URL params not being correct.

The bug happened because I forgot to pass in the id attribute.
pull/244/head
Rapptz 9 years ago
parent
commit
b496ea7972
  1. 3
      discord/client.py

3
discord/client.py

@ -1123,6 +1123,9 @@ class Client:
if message.author == client.user:
counter += 1
"""
before = getattr(before, 'id', None)
after = getattr(after, 'id', None)
return self.http.logs_from(channel.id, limit, before=before, after=after)
if PY35:

Loading…
Cancel
Save