Not my problem lol

This commit is contained in:
Christopher Cookman 2024-11-13 18:36:47 -07:00
parent cdc24571b8
commit 3fe582816f

View file

@ -46,7 +46,7 @@ kuma.status(process.env.STATUSPAGE).then((status) => {
let statusString = `Service Status at ${onlinePercentage.toFixed(0)}%. `; let statusString = `Service Status at ${onlinePercentage.toFixed(0)}%. `;
if (offline.length > 0) { if (offline.length > 0) {
statusString += `${offline.length} of ${totalCount} services are offline... Offline services follow... ${offline.join("... ")}` statusString += `${offline.length} of ${totalCount} services are offline. Offline services follow, ${offline.join(". ")}`
} else { } else {
statusString += `No outages detected!` statusString += `No outages detected!`
} }