summaryrefslogtreecommitdiffstats
path: root/api/post.go
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
commitd6ab5bb1c264826af70533968c605cc1565bed4c (patch)
treebd8061ae14878ba350601ca590a4bc7b59258212 /api/post.go
parentd86401a0197b8ce8c30d7e1e4e76a5b348ae9b13 (diff)
downloadchat-d6ab5bb1c264826af70533968c605cc1565bed4c.tar.gz
chat-d6ab5bb1c264826af70533968c605cc1565bed4c.tar.bz2
chat-d6ab5bb1c264826af70533968c605cc1565bed4c.zip
improved split function
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 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 {