diff --git a/CHANGELOG.md b/CHANGELOG.md index fb35d97cce..0df83c03a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,8 @@ These changes are available on the `master` branch, but have not yet been releas documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581)) - Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584)) +- Fixed paginator not responding when using `Paginator.edit()` with default parameters. + ([#2594](https://github.com/Pycord-Development/pycord/pull/2594)) - Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593)) - Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the diff --git a/discord/ext/pages/pagination.py b/discord/ext/pages/pagination.py index d3f2d32800..884a157a92 100644 --- a/discord/ext/pages/pagination.py +++ b/discord/ext/pages/pagination.py @@ -1093,6 +1093,9 @@ async def edit( self.user = user or self.user + if not self.user: + self.usercheck = False + try: self.message = await message.edit( content=page_content.content,