From 9cd3a6836b952bda507734b6a476dfaa9b4640fb Mon Sep 17 00:00:00 2001 From: Go Shoemake Date: Wed, 10 May 2017 18:47:38 -0700 Subject: [PATCH] Fixed mention regex to support unicode (#2420) --- app/models/account.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/account.rb b/app/models/account.rb index c2dc77d93..d43cae038 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -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