diff --git a/Server/service/notificationService.js b/Server/service/notificationService.js index ebd27c166..59698f0c5 100644 --- a/Server/service/notificationService.js +++ b/Server/service/notificationService.js @@ -39,7 +39,7 @@ class NotificationService { let url = webhookUrl; const message = this.formatNotificationMessage(monitor, status, type, chatId); - if (!message) { + if (message === null) { this.logger.warn({ message: `Unsupported webhook type: ${type}`, service: this.SERVICE_NAME,