fix: allow announces with followers visibility
This commit is contained in:
parent
74a9e374d6
commit
7acb2b7c09
|
@ -13,6 +13,9 @@ export default (object: any, note: Note) => {
|
|||
} else if (note.visibility === "home") {
|
||||
to = [`${attributedTo}/followers`];
|
||||
cc = ["https://www.w3.org/ns/activitystreams#Public"];
|
||||
} else if (note.visibility === 'followers') {
|
||||
to = [`${attributedTo}/followers`];
|
||||
cc = [];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue