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
parent
commit
6dd8845e4f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/guild.py

2
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

Loading…
Cancel
Save