From 89852d04c064588f24c6122caf18b8e656399f94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Thu, 27 Sep 2018 16:10:09 +0200 Subject: When leave a channel the push notification can fail (#9478) --- app/channel.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'app/channel.go') diff --git a/app/channel.go b/app/channel.go index 84a334c66..30fc2c1b6 100644 --- a/app/channel.go +++ b/app/channel.go @@ -1565,7 +1565,13 @@ func (a *App) MarkChannelsAsViewed(channelIds []string, userId string, clearPush if *a.Config().EmailSettings.SendPushNotifications && clearPushNotifications { for _, channelId := range channelIds { if model.IsValidId(channelId) { - member := (<-a.Srv.Store.Channel().GetMember(channelId, userId)).Data.(*model.ChannelMember) + result := <-a.Srv.Store.Channel().GetMember(channelId, userId) + if result.Err != nil { + mlog.Warn(fmt.Sprintf("Failed to get membership %v", result.Err)) + continue + } + member := result.Data.(*model.ChannelMember) + notify := member.NotifyProps[model.PUSH_NOTIFY_PROP] if notify == model.CHANNEL_NOTIFY_DEFAULT { user, _ := a.GetUser(userId) -- cgit v1.2.3-1-g7c22