Skip to content

Commit 80010ca

Browse files
committed
Autotriggers no longer sends attachments back. resolves #2932
1 parent d19adcf commit 80010ca

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ however, insignificant breaking changes do not guarantee a major version bump, s
1212

1313
- Additional image uploads now render properly. ([PR #2933](https://github.com/kyb3r/modmail/pull/2933)))
1414
- `confirm_thread_creation` no longer raises unnecessary errors. ([GH #2931](https://github.com/kyb3r/modmail/issues/2931), [PR #2933](https://github.com/kyb3r/modmail/pull/2933))
15+
- Autotriggers no longer sends attachments back. ([GH #2932](https://github.com/kyb3r/modmail/issues/2932))
1516

1617

1718
# v3.8.0

core/models.py

+1
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ class DummyMessage:
227227
"""
228228

229229
def __init__(self, message):
230+
message.attachments = []
230231
self._message = message
231232

232233
def __getattr__(self, name: str):

0 commit comments

Comments
 (0)