summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/notification.go4
-rw-r--r--config/config.json2
2 files changed, 3 insertions, 3 deletions
diff --git a/app/notification.go b/app/notification.go
index b9153037e..2b8c0c8c4 100644
--- a/app/notification.go
+++ b/app/notification.go
@@ -333,8 +333,8 @@ func sendNotificationEmail(post *model.Post, user *model.User, channel *model.Ch
if *utils.Cfg.EmailSettings.EnableEmailBatching {
var sendBatched bool
if result := <-Srv.Store.Preference().Get(user.Id, model.PREFERENCE_CATEGORY_NOTIFICATIONS, model.PREFERENCE_NAME_EMAIL_INTERVAL); result.Err != nil {
- // if the call fails, assume it hasn't been set and don't batch notifications for this user
- sendBatched = false
+ // if the call fails, assume that the interval has not been explicitly set and batch the notifications
+ sendBatched = true
} else {
// if the user has chosen to receive notifications immediately, don't batch them
sendBatched = result.Data.(model.Preference).Value != model.PREFERENCE_EMAIL_INTERVAL_NO_BATCHING_SECONDS
diff --git a/config/config.json b/config/config.json
index 23d1d2ec0..0619e3500 100644
--- a/config/config.json
+++ b/config/config.json
@@ -307,4 +307,4 @@
"PluginSettings": {
"Plugins": {}
}
-}
+} \ No newline at end of file