mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-21 17:37:29 -07:00
fix #8894
This commit is contained in:
parent
24126334f7
commit
bbad8434c4
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ import { ApiError } from './error.js';
|
|||
|
||||
export default (endpoint: IEndpoint, ctx: Koa.Context) => new Promise<void>((res) => {
|
||||
const body = ctx.is('multipart/form-data')
|
||||
? (ctx.req as any).body
|
||||
? (ctx.request as any).body
|
||||
: ctx.method === 'GET'
|
||||
? ctx.query
|
||||
: ctx.request.body;
|
||||
|
|
Loading…
Reference in a new issue