summaryrefslogtreecommitdiffstats
path: root/app/email_batching.go
diff options
context:
space:
mode:
authorJesús Espino <jespinog@gmail.com>2018-06-16 09:35:24 +0200
committerGitHub <noreply@github.com>2018-06-16 09:35:24 +0200
commitf48d31c7a4c0332bfd10b986eee50611ab987e7c (patch)
tree9dc73867d374320ce8d00f5629ee11c5c10765f2 /app/email_batching.go
parente38b18565ecd9dbe46b0ba8a263c7a39caa0bfda (diff)
downloadchat-f48d31c7a4c0332bfd10b986eee50611ab987e7c.tar.gz
chat-f48d31c7a4c0332bfd10b986eee50611ab987e7c.tar.bz2
chat-f48d31c7a4c0332bfd10b986eee50611ab987e7c.zip
Small translation fixes (#8940)
Diffstat (limited to 'app/email_batching.go')
-rw-r--r--app/email_batching.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/email_batching.go b/app/email_batching.go
index e75979bca..aad1eb8cb 100644
--- a/app/email_batching.go
+++ b/app/email_batching.go
@@ -198,7 +198,7 @@ func (a *App) sendBatchedEmailNotification(userId string, notifications []*batch
var user *model.User
if result := <-uchan; result.Err != nil {
- mlog.Warn("api.email_batching.send_batched_email_notification.user.app_error")
+ mlog.Warn("Unable to find recipient for batched email notification")
return
} else {
user = result.Data.(*model.User)