forked from GNUsocial/gnu-social
Don't set the title of a notice to its plain-text content.
This commit is contained in:
parent
736bc9cc96
commit
460d80d09e
@ -433,7 +433,6 @@ class ActivityObject
|
|||||||
$object->type = (empty($notice->object_type)) ? ActivityObject::NOTE : $notice->object_type;
|
$object->type = (empty($notice->object_type)) ? ActivityObject::NOTE : $notice->object_type;
|
||||||
|
|
||||||
$object->id = $notice->uri;
|
$object->id = $notice->uri;
|
||||||
$object->title = $notice->content;
|
|
||||||
$object->content = $notice->rendered;
|
$object->content = $notice->rendered;
|
||||||
$object->link = $notice->bestUrl();
|
$object->link = $notice->bestUrl();
|
||||||
|
|
||||||
@ -687,7 +686,10 @@ class ActivityObject
|
|||||||
// content (Add rendered version of the notice?)
|
// content (Add rendered version of the notice?)
|
||||||
|
|
||||||
// displayName
|
// displayName
|
||||||
$object['displayName'] = $this->title;
|
|
||||||
|
if ($this->title) {
|
||||||
|
$object['displayName'] = $this->title;
|
||||||
|
}
|
||||||
|
|
||||||
// downstreamDuplicates
|
// downstreamDuplicates
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user