Fix MENTION_RE to not match nil usernames (#6862)

lolsob-rspec
ThibG 2018-03-22 10:45:48 +01:00 committed by Eugen Rochko
parent 692d03239b
commit 7d7a725e82
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@
class Account < ApplicationRecord
USERNAME_RE = /[a-z0-9_]+([a-z0-9_\.]+[a-z0-9_]+)?/i
MENTION_RE = /(?<=^|[^\/[:word:]])@((#{USERNAME_RE}?)(?:@[a-z0-9\.\-]+[a-z0-9]+)?)/i
MENTION_RE = /(?<=^|[^\/[:word:]])@((#{USERNAME_RE})(?:@[a-z0-9\.\-]+[a-z0-9]+)?)/i
include AccountAvatar
include AccountFinderConcern