Browse Source

Fix MENTION_RE to not match nil usernames (#6862)

pull/4/head
ThibG 6 years ago
committed by Eugen Rochko
parent
commit
6f531d140b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/models/account.rb

+ 1
- 1
app/models/account.rb 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

Loading…
Cancel
Save