Skip to content

Commit 840d379

Browse files
committed
fix: remove references to maxreport
1 parent 8eaa95d commit 840d379

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

public/css/clustermap.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ body {
8080
border-color: var(--exam-active-color);
8181
}
8282

83-
/* The following should never happen but just in case maxreport decides to break */
83+
/* The following should never happen but just in case crs decides to break */
8484
.round-img.session-dead {
8585
border-color: var(--danger-color);
8686
}

src/pages/api/active.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ interface ResponseLocation {
5050
alive: boolean;
5151
}
5252

53-
async function getMaxreportLocations() {
53+
async function getCRLocations() {
5454
const responseLocations : ResponseLocation[] = [];
5555

5656
// Get locations straight from Maxreport
@@ -123,7 +123,7 @@ const locations = async (req: NextApiRequest, res: NextApiResponse) => {
123123
let response = locationCache.get("response");
124124

125125
if (response == undefined) {
126-
for (const responseLocation of await getMaxreportLocations()) {
126+
for (const responseLocation of await getCRLocations()) {
127127
responseJSON.push(responseLocation);
128128
}
129129
for (const responseLocation of await getExamLocations()) {

0 commit comments

Comments
 (0)