0
0
Fork 0

Fix account and hashtag regex

This commit is contained in:
Eugen Rochko 2016-11-07 17:35:25 +01:00
parent c3559d18a3
commit f5c6baf29d
2 changed files with 2 additions and 2 deletions

View file

@ -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