mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-06 09:56:09 +00:00
Fix audit log pagination logic
This commit is contained in:
@ -1717,7 +1717,7 @@ class HTTPClient:
|
||||
params: Dict[str, Any] = {'limit': limit}
|
||||
if before:
|
||||
params['before'] = before
|
||||
if after:
|
||||
if after is not None:
|
||||
params['after'] = after
|
||||
if user_id:
|
||||
params['user_id'] = user_id
|
||||
|
Reference in New Issue
Block a user