Remove space
This commit is contained in:
parent
78a69e3da8
commit
558213490a
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ export default (endpoint: IEndpoint, ctx: Koa.BaseContext) => new Promise((res)
|
||||||
call(endpoint.name, user, app, body, (ctx.req as any).file).then(res => {
|
call(endpoint.name, user, app, body, (ctx.req as any).file).then(res => {
|
||||||
reply(res);
|
reply(res);
|
||||||
}).catch(e => {
|
}).catch(e => {
|
||||||
reply(e.httpStatusCode ? e.httpStatusCode : e.kind == 'client' ? 400 : 500, e);
|
reply(e.httpStatusCode ? e.httpStatusCode : e.kind == 'client' ? 400 : 500, e);
|
||||||
});
|
});
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
reply(403, new ApiError({
|
reply(403, new ApiError({
|
||||||
|
|
Loading…
Reference in a new issue