Skip to content
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 buttons not responding when using `Paginator.edit()` with its 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))

Expand Down
6 changes: 4 additions & 2 deletions discord/ext/pages/pagination.py
Original file line number Diff line number Diff line change
Expand Up @@ -1090,8 +1090,10 @@ async def edit(

if page_content.custom_view:
self.update_custom_view(page_content.custom_view)

self.user = user or self.user
if user or self.user:
self.user = user or self.user
else:
self.usercheck = False

try:
self.message = await message.edit(
Expand Down
Loading