mirror of
https://github.com/misskey-dev/misskey
synced 2024-11-24 07:06:31 +09:00
refactor: remove needless const notation
This commit is contained in:
parent
22ccb0fa71
commit
8950114f7d
@ -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,
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user