Add expected xmlns attribute to group feed entries

This commit is contained in:
Hypolite Petovan 2023-11-16 06:58:15 -05:00
parent 21227453e5
commit 518c463761
1 changed files with 2 additions and 0 deletions

View File

@ -1470,6 +1470,8 @@ class OStatus
$entry = $doc->createElement('entry');
if ($owner['contact-type'] == Contact::TYPE_COMMUNITY) {
$entry->setAttribute('xmlns:activity', ActivityNamespace::ACTIVITY);
$contact = Contact::getByURL($item['author-link']) ?: $owner;
$contact['nickname'] = $contact['nickname'] ?? $contact['nick'];
$author = self::addAuthor($doc, $contact, false);