Browse Source
Fix wrong variable being returned in audit logs
pull/7985/head
z03h
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 |
|
|
|