Skip to content

Commit 73d9336

Browse files
authored
Merge branch 'master' into app_emojis
2 parents 5935ef9 + e8311f2 commit 73d9336

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ These changes are available on the `master` branch, but have not yet been releas
3737
documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))
3838
- Fixed a possible bug where audio would play too fast at the beginning of audio files.
3939
([#2584](https://github.com/Pycord-Development/pycord/pull/2584))
40+
- Fixed paginator not responding when using `Paginator.edit()` with default parameters.
41+
([#2594](https://github.com/Pycord-Development/pycord/pull/2594))
4042
- Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`.
4143
([#2593](https://github.com/Pycord-Development/pycord/pull/2593))
4244
- Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the

discord/ext/pages/pagination.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1101,6 +1101,9 @@ async def edit(
11011101

11021102
self.user = user or self.user
11031103

1104+
if not self.user:
1105+
self.usercheck = False
1106+
11041107
try:
11051108
self.message = await message.edit(
11061109
content=page_content.content,

0 commit comments

Comments
 (0)