Skip to content
Snippets Groups Projects
Commit cf5a3fd7 authored by Steffen Lindner's avatar Steffen Lindner Committed by GitHub
Browse files

Merge pull request #339 from nextcloud/fix-undisclosed-recipient-list

FIx inbox listing with undisclosed-recipients
parents 85c56c38 9f7f2520
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,9 @@ trait ConvertAddresses {
protected function convertAddressList($envelope) {
$list = [];
foreach ($envelope as $t) {
$list[] = $this->hordeToAssoc($t);
if ($t instanceof Horde_Mail_Rfc822_Address) {
$list[] = $this->hordeToAssoc($t);
}
}
return $list;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment