summaryrefslogtreecommitdiffstats
path: root/api/post.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-09-17 09:01:33 -0400
committerChristopher Speller <crspeller@gmail.com>2015-09-17 09:07:37 -0400
commiteb4b80a4845a738f5a1e84504a31f6f54bc4fe92 (patch)
tree16be9e1aee46244245cc9034ccee0b306e77ba9c /api/post.go
parente644b53b72d346539f5c58cc0cb0a07c4054cbcb (diff)
downloadchat-eb4b80a4845a738f5a1e84504a31f6f54bc4fe92.tar.gz
chat-eb4b80a4845a738f5a1e84504a31f6f54bc4fe92.tar.bz2
chat-eb4b80a4845a738f5a1e84504a31f6f54bc4fe92.zip
Adding gofmt to travis build
Diffstat (limited to 'api/post.go')
-rw-r--r--api/post.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/post.go b/api/post.go
index 005f3f884..21bc35b97 100644
--- a/api/post.go
+++ b/api/post.go
@@ -353,7 +353,7 @@ func fireAndForgetNotifications(post *model.Post, teamId, siteURL string) {
}
}
- for id, _ := range toEmailMap {
+ for id := range toEmailMap {
fireAndForgetMentionUpdate(post.ChannelId, id)
}
}