Merge branch 'fix/dont-leak-api-error-stack' into 'develop'
Don't leak error details (including the stack trace) upon API call failure to client in production See merge request firefish/firefish!10522
This commit is contained in:
commit
c0bbf03201
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ export default (endpoint: IEndpoint, ctx: Koa.Context) =>
|
||||||
code: y!.code,
|
code: y!.code,
|
||||||
id: y!.id,
|
id: y!.id,
|
||||||
kind: y!.kind,
|
kind: y!.kind,
|
||||||
...(y!.info ? { info: y!.info } : {}),
|
...((y!.info && process.env.NODE_ENV !== "production") ? { info: y!.info } : {}),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue