Update server/notification-providers/zoho-cliq.js

Co-authored-by: Frank Elsinga <frank@elsinga.de>
This commit is contained in:
Francesco M 2024-06-12 18:14:05 +02:00 committed by GitHub
parent 82fb7b2816
commit bd95ccdc64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,7 @@ class ZohoCliq extends NotificationProvider {
if (status === DOWN) {
return `🔴 [${monitorName}] went down\n`;
} else if (status === UP) {
return `✅ [${monitorName}] is back online\n`;
return `### ✅ [${monitorName}] is back online\n`;
}
return "Notification\n";
};