This commit is contained in:
Christopher Cookman 2024-11-13 18:33:27 -07:00
parent be19a6698b
commit cdc24571b8

View file

@ -46,7 +46,7 @@ kuma.status(process.env.STATUSPAGE).then((status) => {
let statusString = `Service Status at ${onlinePercentage.toFixed(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 {
statusString += `No outages detected!`
}