fix(backend/ClientServerService): リモートユーザーをユーザーIDで照会できない問題を修正 (MisskeyIO#868)

This commit is contained in:
あわわわとーにゅ 2025-01-03 06:57:10 +09:00 committed by GitHub
parent b5a796ffd1
commit 6dcda9db5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -564,7 +564,6 @@ export class ClientServerService {
fastify.get<{ Params: { user: string; } }>('/users/:user', async (request, reply) => {
const user = await this.usersRepository.findOneBy({
id: request.params.user,
host: IsNull(),
isSuspended: false,
});