Skip to content

Commit

Permalink
fix(backend/ClientServerService): リモートユーザーをユーザーIDで照会できない問題を修正 (#868)
Browse files Browse the repository at this point in the history
u1-liquid authored Jan 2, 2025
1 parent b5a796f commit 6dcda9d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/backend/src/server/web/ClientServerService.ts
Original file line number Diff line number Diff line change
@@ -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,
});

0 comments on commit 6dcda9d

Please sign in to comment.