Browse Source

Fix wrong variable being returned in audit logs

pull/7985/head
z03h 3 years ago
committed by GitHub
parent
commit
9deac84eac
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/guild.py

2
discord/guild.py

@ -3350,7 +3350,7 @@ class Guild(Hashable):
before = Object(id=int(entries[-1]['id']))
return data, entries, after, limit
return data, entries, before, limit
async def _after_strategy(retrieve, after, limit):
after_id = after.id if after else None

Loading…
Cancel
Save