Skip to content

Commit ee3e7b3

Browse files
fixup! feat: use task processing to send emails
Signed-off-by: SebastianKrupinski <[email protected]>
1 parent 71fde9d commit ee3e7b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/public/Mail/Provider/Message.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function jsonDeserialize(array|string $data): static {
8080
foreach ($data[$field] as $item) {
8181
if (is_array($item)) {
8282
if ($field === 'attachments') {
83-
$attachment = (new Attachment())->jsonDeserialize($item);
83+
$attachment = (new Attachment(null, null, null))->jsonDeserialize($item);
8484
$this->data[$field][] = $attachment;
8585
} else {
8686
$address = (new Address())->jsonDeserialize($item);

0 commit comments

Comments
 (0)