Merge pull request #10413 from annando/notice

Fix notice "Undefined index: url in .../src/Protocol/ActivityPub/Transmitter.php on line 611"
This commit is contained in:
Hypolite Petovan 2021-06-17 14:55:39 -04:00 committed by GitHub
commit bd9fa88c66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -608,7 +608,7 @@ class Transmitter
// But comments to forums aren't directed to the followers collection // But comments to forums aren't directed to the followers collection
// This rule is only valid when the actor isn't the forum. // This rule is only valid when the actor isn't the forum.
// The forum needs to transmit their content to their followers. // 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']; $data['to'][] = $profile['url'];
} else { } else {
$data['cc'][] = $profile['url']; $data['cc'][] = $profile['url'];