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
// 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'];