Skip to content

Commit

Permalink
fix(#872): 消し忘れ (#875)
Browse files Browse the repository at this point in the history
  • Loading branch information
u1-liquid authored Jan 7, 2025
1 parent 7f3b3cf commit f2eafaa
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
Expand Up @@ -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,
isSuspended: false,
});

if (!user || (user.isDeleted && user.isSuspended)) {
Expand Down

0 comments on commit f2eafaa

Please sign in to comment.