fix(stats): don't include system accounts
This commit is contained in:
parent
e990ebb4e0
commit
cdcaf61d3f
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
|
||||
const usersChart = await this.usersChart.getChart('hour', 1, null);
|
||||
const usersCount = usersChart.local.total[0] + usersChart.remote.total[0];
|
||||
const originalUsersCount = usersChart.local.total[0];
|
||||
const originalUsersCount = usersChart.local.total[0] - 2;
|
||||
|
||||
const [
|
||||
reactionsCount,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue