summaryrefslogtreecommitdiffstats
path: root/model/search_params.go
diff options
context:
space:
mode:
authorChris <ccbrown112@gmail.com>2017-10-30 11:57:24 -0500
committerGitHub <noreply@github.com>2017-10-30 11:57:24 -0500
commitc5e8cb25caa39ed018ede5270e1566e8f7448396 (patch)
tree80f9f8957d4ff8458ecf9631135c916df25544bd /model/search_params.go
parent63df41b91110bac06baffef87fe0c1952b47ac93 (diff)
downloadchat-c5e8cb25caa39ed018ede5270e1566e8f7448396.tar.gz
chat-c5e8cb25caa39ed018ede5270e1566e8f7448396.tar.bz2
chat-c5e8cb25caa39ed018ede5270e1566e8f7448396.zip
simplify things (#7735)
Diffstat (limited to 'model/search_params.go')
-rw-r--r--model/search_params.go14
1 files changed, 2 insertions, 12 deletions
diff --git a/model/search_params.go b/model/search_params.go
index 070ac6d24..2feea8da1 100644
--- a/model/search_params.go
+++ b/model/search_params.go
@@ -31,16 +31,6 @@ func (o *SearchParams) ToJson() string {
var searchFlags = [...]string{"from", "channel", "in"}
-func splitWordsNoQuotes(text string) []string {
- words := []string{}
-
- for _, word := range strings.Fields(text) {
- words = append(words, word)
- }
-
- return words
-}
-
func splitWords(text string) []string {
words := []string{}
@@ -55,14 +45,14 @@ func splitWords(text string) []string {
foundQuote = false
location = i + 1
} else {
- words = append(words, splitWordsNoQuotes(text[location:i])...)
+ words = append(words, strings.Fields(text[location:i])...)
foundQuote = true
location = i
}
}
}
- words = append(words, splitWordsNoQuotes(text[location:])...)
+ words = append(words, strings.Fields(text[location:])...)
return words
}