refactor: remove needless const notation

This commit is contained in:
syuilo 2022-12-04 10:32:12 +09:00
parent 22ccb0fa71
commit 8950114f7d
1 changed files with 2 additions and 2 deletions

View File

@ -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,
});