diff --git a/lib/notifier/index.js b/lib/notifier/index.js index e44ec1a6..0529ecbd 100644 --- a/lib/notifier/index.js +++ b/lib/notifier/index.js @@ -38,8 +38,9 @@ function checkNotification (plugins) { const notifications = plugins.getNotificationConfig() const smsEnabled = utils.isActive(notifications.sms) const emailEnabled = utils.isActive(notifications.email) + const notificationCenterEnabled = utils.isActive(notifications.notificationCenter) - if (!smsEnabled && !emailEnabled) return Promise.resolve() + if (!(notificationCenterEnabled || smsEnabled || emailEnabled)) return Promise.resolve() return getAlerts(plugins) .then(alerts => {