Merge pull request #214 from status-im/feature/case-insensitive-tags-#190

use only lower case tags

Former-commit-id: ba5df10f38
This commit is contained in:
Roman Volosovskyi 2016-09-06 14:16:14 +03:00 committed by GitHub
commit b1c765a0ef
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
[status-im.i18n :refer [label]])) [status-im.i18n :refer [label]]))
(defn get-hashtags [status] (defn get-hashtags [status]
(let [hashtags (map #(str/replace % #"#" "") (re-seq #"[^ !?,;:.]+" status))] (let [hashtags (map #(str/lower-case (str/replace % #"#" "")) (re-seq #"[^ !?,;:.]+" status))]
(or hashtags []))) (or hashtags [])))
(defn title-content [platform-specific show-search?] (defn title-content [platform-specific show-search?]

View File

@ -8,7 +8,7 @@
[clojure.string :as str])) [clojure.string :as str]))
(defn get-hashtags [status] (defn get-hashtags [status]
(let [hashtags (map #(subs % 1) (re-seq #"#[^ !?,;:.]+" status))] (let [hashtags (map #(str/lower-case (subs % 1)) (re-seq #"#[^ !?,;:.]+" status))]
(or hashtags []))) (or hashtags [])))
(defn message-user [identity] (defn message-user [identity]