mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
Support unlisted visibility type
This commit is contained in:
parent
32516b1d8e
commit
ad4378bda8
1 changed files with 1 additions and 0 deletions
|
@ -30,6 +30,7 @@ export default async function createNote(resolver: Resolver, actor: IRemoteUser,
|
|||
|
||||
//#region Visibility
|
||||
let visibility = 'public';
|
||||
if (!note.to.includes('https://www.w3.org/ns/activitystreams#Public')) visibility = 'unlisted';
|
||||
if (note.cc.length == 0) visibility = 'private';
|
||||
//#endergion
|
||||
|
||||
|
|
Loading…
Reference in a new issue