summaryrefslogtreecommitdiffstats
path: root/api/email_batching.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/email_batching.go')
-rw-r--r--api/email_batching.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/email_batching.go b/api/email_batching.go
index aa2836570..608d839da 100644
--- a/api/email_batching.go
+++ b/api/email_batching.go
@@ -214,7 +214,7 @@ func sendBatchedEmailNotification(userId string, notifications []*batchedNotific
func renderBatchedPost(template *utils.HTMLTemplate, post *model.Post, teamName string, displayNameFormat string, translateFunc i18n.TranslateFunc) string {
schan := Srv.Store.User().Get(post.UserId)
- cchan := Srv.Store.Channel().Get(post.ChannelId)
+ cchan := Srv.Store.Channel().Get(post.ChannelId, true)
template.Props["Button"] = translateFunc("api.email_batching.render_batched_post.go_to_post")
template.Props["PostMessage"] = getMessageForNotification(post, translateFunc)