1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-28 14:58:38 +09:00

Fixed mention regex to support unicode (#2420)

This commit is contained in:
Go Shoemake 2017-05-10 18:47:38 -07:00 committed by Eugen Rochko
parent 53c2274d48
commit 9cd3a6836b

View File

@ -39,7 +39,7 @@
#
class Account < ApplicationRecord
MENTION_RE = /(?:^|[^\/\w])@([a-z0-9_]+(?:@[a-z0-9\.\-]+[a-z0-9]+)?)/i
MENTION_RE = /(?:^|[^\/[:word:]])@([a-z0-9_]+(?:@[a-z0-9\.\-]+[a-z0-9]+)?)/i
include AccountAvatar
include AccountHeader