Attribute posts to one actor only
This commit is contained in:
parent
c282246bf2
commit
92b4dea739
@ -94,7 +94,7 @@ impl Object for Post {
|
|||||||
json!({
|
json!({
|
||||||
"type": "Article",
|
"type": "Article",
|
||||||
"id": self.compute_id(conn),
|
"id": self.compute_id(conn),
|
||||||
"attributedTo": self.get_authors(conn).into_iter().map(|a| a.compute_id(conn)).collect::<Vec<String>>(),
|
"attributedTo": self.get_authors(conn)[0].compute_id(conn),
|
||||||
"content": self.content,
|
"content": self.content,
|
||||||
"actor": self.get_authors(conn)[0].compute_id(conn),
|
"actor": self.get_authors(conn)[0].compute_id(conn),
|
||||||
"published": self.creation_date,
|
"published": self.creation_date,
|
||||||
|
Loading…
Reference in New Issue
Block a user