From 6435af89b6ce0d7dabdd5951989d28d3c35f2594 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Fri, 6 Nov 2020 02:34:55 -0500 Subject: [PATCH] more fucking fixes --- src/api/comm.libraryofcode.org/routes/report.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/comm.libraryofcode.org/routes/report.ts b/src/api/comm.libraryofcode.org/routes/report.ts index 86c0e3f..c5a3091 100644 --- a/src/api/comm.libraryofcode.org/routes/report.ts +++ b/src/api/comm.libraryofcode.org/routes/report.ts @@ -551,10 +551,10 @@ export default class Report extends Route { if (data.report.roles <= 0) role = 0; else if (data.report.roles > 54) role = 54; - else activity = Math.round(data.report.roles); + else role = Math.round(data.report.roles); if (data.report.staff <= 0) role = 0; - else activity = Math.round(data.report.staff); + else misc = Math.round(data.report.staff); if (data.report.cloudServices === 0) cloud = 0; else if (data.report.cloudServices > 10) cloud = 10;