This commit is contained in:
syuilo 2018-10-26 08:36:50 +09:00
parent f00489196d
commit 5b1cd3bd3c
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
18 changed files with 18 additions and 18 deletions

View file

@ -33,7 +33,7 @@ export const meta = {
export default (params: any) => new Promise(async (res, rej) => {
const [ps, psErr] = getParams(meta, params);
if (psErr) throw psErr;
if (psErr) return rej(psErr);
const stats = await perUserReactionsChart.getChart(ps.span as any, ps.limit, ps.userId);