about summary refs log tree commit diff
path: root/app/models/tag.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-07 17:35:25 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-07 17:35:25 +0100
commitf5c6baf29dde4d89c1c4611ac11b1da939523f06 (patch)
treef59670c323ce462cf85ec71c38bcc9cf3eec305f /app/models/tag.rb
parentc3559d18a3824982995d2c0d67d829fca4d30fb6 (diff)
Fix account and hashtag regex
Diffstat (limited to 'app/models/tag.rb')
-rw-r--r--app/models/tag.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/tag.rb b/app/models/tag.rb
index a5ee62263..ac89c9bff 100644
--- a/app/models/tag.rb
+++ b/app/models/tag.rb
@@ -1,7 +1,7 @@
 class Tag < ApplicationRecord
   has_and_belongs_to_many :statuses
 
-  HASHTAG_RE = /[?:^|\s|\.|>]#([[:word:]_]+)/i
+  HASHTAG_RE = /(?:^|[^\/\w])#([[:word:]_]+)/i
 
   validates :name, presence: true, uniqueness: true