Skip to content

Commit 4155be8

Browse files
authored
Merge branch 'master' into colours
2 parents 083cb04 + 14989c9 commit 4155be8

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
@@ -26,6 +26,8 @@ These changes are available on the `master` branch, but have not yet been releas
2626
([#2808](https://github.com/Pycord-Development/pycord/pull/2808))
2727
- Unbound `raw` reference in `parse_message_update` causing errors on message updates.
2828
([#2905](https://github.com/Pycord-Development/pycord/pull/2905))
29+
- `view=None` in various methods causing an AttributeError.
30+
([#2915](https://github.com/Pycord-Development/pycord/pull/2915))
2931

3032
### Removed
3133

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)