summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-06-19 08:25:47 -0400
committerJoramWilander <jwawilander@gmail.com>2015-06-19 08:25:47 -0400
commit5bacc2b2910197306ba6116b7266555794afe89c (patch)
tree65749595952fb365e31878571e4cde10b4656b61 /api
parent3849ea485a9df0e14b8282177b547659180e34f0 (diff)
downloadchat-5bacc2b2910197306ba6116b7266555794afe89c.tar.gz
chat-5bacc2b2910197306ba6116b7266555794afe89c.tar.bz2
chat-5bacc2b2910197306ba6116b7266555794afe89c.zip
improved split function
Diffstat (limited to 'api')
-rw-r--r--api/post.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/post.go b/api/post.go
index 0e521034d..3acc95551 100644
--- a/api/post.go
+++ b/api/post.go
@@ -302,7 +302,7 @@ func fireAndForgetNotifications(post *model.Post, teamId, teamUrl string) {
// Build a map as a list of unique user_ids that are mentioned in this post
splitF := func(c rune) bool {
- return c == ',' || c == ' ' || c == '.' || c == '!' || c == '?' || c == ':' || c == '<' || c == '>' || c == '\n'
+ return model.SplitRunes[c]
}
splitMessage := strings.FieldsFunc(strings.Replace(post.Message, "<br>", " ", -1), splitF)
for _, word := range splitMessage {