summaryrefslogtreecommitdiffstats
path: root/app/notification.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/notification.go')
-rw-r--r--app/notification.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/notification.go b/app/notification.go
index 67959c6bc..7b61de9ac 100644
--- a/app/notification.go
+++ b/app/notification.go
@@ -318,8 +318,7 @@ func SendNotifications(post *model.Post, team *model.Team, channel *model.Channe
}
func sendNotificationEmail(post *model.Post, user *model.User, channel *model.Channel, team *model.Team, senderName string, sender *model.User, siteURL string) *model.AppError {
- if channel.IsGroupOrDirect() && channel.TeamId != team.Id {
- // this message is a cross-team DM/GM so we need to find a team that the recipient is on to use in the link
+ if channel.IsGroupOrDirect() {
if result := <-Srv.Store.Team().GetTeamsByUserId(user.Id); result.Err != nil {
return result.Err
} else {