Fixes for bad invocations of HTML::toBBCode() (1st parameter is now string)

This commit is contained in:
Roland Häder 2022-06-16 14:21:11 +02:00
parent b200874f17
commit 7814ba4fc4
No known key found for this signature in database
GPG Key ID: C82EDE5DDFA0BA77

View File

@ -651,7 +651,7 @@ class Processor
$content = self::removeImplicitMentionsFromBody($content, $parent);
}
$item['content-warning'] = HTML::toBBCode($activity['summary']);
$item['content-warning'] = (!empty($activity['summary']) ? HTML::toBBCode($activity['summary']) : '');
$item['raw-body'] = $item['body'] = $content;
}
@ -1225,7 +1225,8 @@ class Processor
$attributed_to = JsonLD::fetchElement($activity['as:object'], 'as:attributedTo', '@id');
$authorid = Contact::getIdForURL($attributed_to);
$body = HTML::toBBCode(JsonLD::fetchElement($activity['as:object'], 'as:content', '@value'));
$value = JsonLD::fetchElement($activity['as:object'], 'as:content', '@value');
$body = (!empty($value) ? HTML::toBBCode($value) : '');
$messageTags = [];
$tags = Receiver::processTags(JsonLD::fetchElementArray($activity['as:object'], 'as:tag') ?? []);