From 8950114f7d494c02f6d2ff9fe11a5539cdfcfd66 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 4 Dec 2022 10:32:12 +0900 Subject: [PATCH] refactor: remove needless const notation --- packages/backend/src/server/ActivityPubServerService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/backend/src/server/ActivityPubServerService.ts b/packages/backend/src/server/ActivityPubServerService.ts index 0ce2c9cd9..015c8f2b4 100644 --- a/packages/backend/src/server/ActivityPubServerService.ts +++ b/packages/backend/src/server/ActivityPubServerService.ts @@ -433,7 +433,7 @@ export class ActivityPubServerService { fastify.get<{ Params: { note: string; } }>('/notes/:note', { constraints: { apOrHtml: 'ap' } }, async (request, reply) => { const note = await this.notesRepository.findOneBy({ id: request.params.note, - visibility: In(['public' as const, 'home' as const]), + visibility: In(['public', 'home']), localOnly: false, }); @@ -462,7 +462,7 @@ export class ActivityPubServerService { const note = await this.notesRepository.findOneBy({ id: request.params.note, userHost: IsNull(), - visibility: In(['public' as const, 'home' as const]), + visibility: In(['public', 'home']), localOnly: false, });