diff options
Diffstat (limited to 'src/server/api')
| -rw-r--r-- | src/server/api/private/signin.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/server/api/private/signin.ts b/src/server/api/private/signin.ts index 9f26c09c45..c42fb7bd8c 100644 --- a/src/server/api/private/signin.ts +++ b/src/server/api/private/signin.ts @@ -12,8 +12,9 @@ export default async (ctx: Koa.Context) => { ctx.set('Access-Control-Allow-Credentials', 'true'); const body = ctx.request.body as any; - const username = body['username']; - const password = body['password']; + // See: https://github.com/syuilo/misskey/issues/2384 + const username = body['username'] || body['x']; + const password = body['password'] || body['y']; const token = body['token']; if (typeof username != 'string') { |