Skip to content

Commit c09d8e3

Browse files
committed
Merge remote-tracking branch 'upstream/master' into feat/guild-specific-bot-fields
2 parents 160aaf6 + 14989c9 commit c09d8e3

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ jobs:
198198
python3 -m build --sdist
199199
python3 -m build --wheel
200200
- name: "Create GitHub Release"
201-
uses: softprops/[email protected].2
201+
uses: softprops/[email protected].3
202202
id: gh-release
203203
with:
204204
tag_name: "v${{ inputs.version }}"

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ These changes are available on the `master` branch, but have not yet been releas
2929
([#2808](https://github.com/Pycord-Development/pycord/pull/2808))
3030
- Unbound `raw` reference in `parse_message_update` causing errors on message updates.
3131
([#2905](https://github.com/Pycord-Development/pycord/pull/2905))
32+
- `view=None` in various methods causing an AttributeError.
33+
([#2915](https://github.com/Pycord-Development/pycord/pull/2915))
3234

3335
### Removed
3436

discord/webhook/async_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1864,7 +1864,7 @@ async def send(
18641864
if wait:
18651865
msg = self._create_message(data)
18661866

1867-
if view is not MISSING and not view.is_finished():
1867+
if view and not view.is_finished():
18681868
message_id = None if msg is None else msg.id
18691869
view.message = None if msg is None else msg
18701870
if msg:

0 commit comments

Comments
 (0)