Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

parseBody() duplicates attachments #490

Open
melnikaite opened this issue Apr 23, 2024 · 0 comments
Open

parseBody() duplicates attachments #490

melnikaite opened this issue Apr 23, 2024 · 0 comments

Comments

@melnikaite
Copy link

Describe the bug

Raw email contains in my case only one attachment, and Message object also, but after calling parseBody() additional attachments is added, the same as first one

Code to Reproduce
The troubling code section which produces the reported bug.

$messages = $folder->messages()->all()->fetchOrderAsc()->leaveUnread()->setFetchBody(true)->setFetchOrder($fetchOrder);
$messagePage = $messages->paginate(per_page: $perPage, page: ++$page);
foreach ($messagePage as $message) {
  $message->parseBody(); // duplicates attachments
}

Expected behaviour

Only unique attachments are listed in Message

Desktop / Server:

  • PHP: 8.2
  • Version: 5.5.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant