forked from woem.men/forkey
fix(backend/ClientServerService): リモートユーザーをユーザーIDで照会できない問題を修正 (MisskeyIO#868)
This commit is contained in:
parent
b5a796ffd1
commit
6dcda9db5c
1 changed files with 0 additions and 1 deletions
|
@ -564,7 +564,6 @@ export class ClientServerService {
|
||||||
fastify.get<{ Params: { user: string; } }>('/users/:user', async (request, reply) => {
|
fastify.get<{ Params: { user: string; } }>('/users/:user', async (request, reply) => {
|
||||||
const user = await this.usersRepository.findOneBy({
|
const user = await this.usersRepository.findOneBy({
|
||||||
id: request.params.user,
|
id: request.params.user,
|
||||||
host: IsNull(),
|
|
||||||
isSuspended: false,
|
isSuspended: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue