summaryrefslogtreecommitdiff
path: root/src/remote/activitypub
diff options
context:
space:
mode:
Diffstat (limited to 'src/remote/activitypub')
-rw-r--r--src/remote/activitypub/act/create/note.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/remote/activitypub/act/create/note.ts b/src/remote/activitypub/act/create/note.ts
index 253478b6f9..88e3a875a6 100644
--- a/src/remote/activitypub/act/create/note.ts
+++ b/src/remote/activitypub/act/create/note.ts
@@ -28,6 +28,11 @@ export default async function createNote(resolver: Resolver, actor: IRemoteUser,
log(`Creating the Note: ${note.id}`);
+ //#region Visibility
+ let visibility = 'public';
+ if (note.cc.length == 0) visibility = 'private';
+ //#endergion
+
//#region 添付メディア
const media = [];
if ('attachment' in note && note.attachment != null) {
@@ -74,6 +79,7 @@ export default async function createNote(resolver: Resolver, actor: IRemoteUser,
text: window.document.body.textContent,
viaMobile: false,
geo: undefined,
+ visibility,
uri: note.id
});
}