Fix notice "Undefined index: url in .../src/Protocol/ActivityPub/Transmitter.php on line 611"
This commit is contained in:
parent
47b64c8735
commit
a2b1819721
|
@ -608,7 +608,7 @@ class Transmitter
|
|||
// But comments to forums aren't directed to the followers collection
|
||||
// This rule is only valid when the actor isn't the forum.
|
||||
// The forum needs to transmit their content to their followers.
|
||||
if (($profile['type'] == 'Group') && ($profile['url'] != $actor_profile['url'])) {
|
||||
if (($profile['type'] == 'Group') && ($profile['url'] != ($actor_profile['url'] ?? ''))) {
|
||||
$data['to'][] = $profile['url'];
|
||||
} else {
|
||||
$data['cc'][] = $profile['url'];
|
||||
|
|
Loading…
Reference in a new issue