From fc6581b94850502e4dac258e32265f9b1fe72617 Mon Sep 17 00:00:00 2001 From: Marie Date: Sun, 31 Dec 2023 03:50:05 +0100 Subject: [PATCH] fix: correct followers visibility on import --- .../backend/src/queue/processors/ImportNotesProcessorService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/queue/processors/ImportNotesProcessorService.ts b/packages/backend/src/queue/processors/ImportNotesProcessorService.ts index 942870dfc7..072567d05c 100644 --- a/packages/backend/src/queue/processors/ImportNotesProcessorService.ts +++ b/packages/backend/src/queue/processors/ImportNotesProcessorService.ts @@ -381,7 +381,7 @@ export class ImportNotesProcessorService { if (toot.directMessage || (!toot.to.includes('https://www.w3.org/ns/activitystreams#Public') || !followers)) return; - const visibility = followers ? 'home' : 'public'; + const visibility = followers ? 'followers' : 'public'; const date = new Date(toot.object.published); let text = undefined;