mirror of
https://github.com/friendica/friendica
synced 2025-04-26 19:50:10 +00:00
Fix mail delivery via AP when the contact is hidden
This commit is contained in:
parent
d3e12c58e2
commit
d8da580869
2 changed files with 16 additions and 9 deletions
|
@ -498,13 +498,7 @@ class Transmitter
|
|||
}
|
||||
}
|
||||
|
||||
$receivers = ['to' => array_values($data['to']), 'cc' => array_values($data['cc']), 'bcc' => array_values($data['bcc'])];
|
||||
|
||||
if (!$blindcopy) {
|
||||
unset($receivers['bcc']);
|
||||
}
|
||||
|
||||
return $receivers;
|
||||
return ['to' => array_values($data['to']), 'cc' => array_values($data['cc']), 'bcc' => array_values($data['bcc'])];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -699,8 +693,15 @@ class Transmitter
|
|||
$mail = self::ItemArrayFromMail($mail_id);
|
||||
$object = self::createNote($mail);
|
||||
|
||||
$object['to'] = $object['cc'];
|
||||
unset($object['cc']);
|
||||
if (!empty($object['cc'])) {
|
||||
$object['to'] = array_merge($object['to'], $object['cc']);
|
||||
unset($object['cc']);
|
||||
}
|
||||
|
||||
if (!empty($object['bcc'])) {
|
||||
$object['to'] = array_merge($object['to'], $object['bcc']);
|
||||
unset($object['bcc']);
|
||||
}
|
||||
|
||||
$object['tag'] = [['type' => 'Mention', 'href' => $object['to'][0], 'name' => 'test']];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue