fix login bug(#2384)
This commit is contained in:
parent
58082431ff
commit
0b503661af
1 changed files with 3 additions and 2 deletions
|
@ -12,8 +12,9 @@ export default async (ctx: Koa.Context) => {
|
||||||
ctx.set('Access-Control-Allow-Credentials', 'true');
|
ctx.set('Access-Control-Allow-Credentials', 'true');
|
||||||
|
|
||||||
const body = ctx.request.body as any;
|
const body = ctx.request.body as any;
|
||||||
const username = body['username'];
|
// See: https://github.com/syuilo/misskey/issues/2384
|
||||||
const password = body['password'];
|
const username = body['username'] || body['x'];
|
||||||
|
const password = body['password'] || body['y'];
|
||||||
const token = body['token'];
|
const token = body['token'];
|
||||||
|
|
||||||
if (typeof username != 'string') {
|
if (typeof username != 'string') {
|
||||||
|
|
Loading…
Reference in a new issue