Browse Source
Fix Guild.audit_logs order being reversed without oldest_first and after
pull/7686/head
Lilly Rose Berner
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
|
|
@ -3282,7 +3282,7 @@ class Guild(Hashable): |
|
|
|
after = Object(id=utils.time_snowflake(after, high=True)) |
|
|
|
|
|
|
|
if oldest_first is MISSING: |
|
|
|
reverse = after is not None |
|
|
|
reverse = after is not MISSING |
|
|
|
else: |
|
|
|
reverse = oldest_first |
|
|
|
|
|
|
|