fix(stats): don't include system accounts

This commit is contained in:
무라쿠모 2024-06-14 15:45:43 +09:00
parent e990ebb4e0
commit cdcaf61d3f
No known key found for this signature in database
GPG key ID: 139D6573F92DA9F7

View file

@ -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,