You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
Currently if a user has more than one dash in their name, the mention will cut off at the first dash. The current regular expression for parsing usernames is @(\w+[-]*\w*) (here).
I think changing it to something like @([a-zA-Z0-9_-]+) should fix it.
The text was updated successfully, but these errors were encountered:
Currently if a user has more than one dash in their name, the mention will cut off at the first dash. The current regular expression for parsing usernames is
@(\w+[-]*\w*)
(here).I think changing it to something like
@([a-zA-Z0-9_-]+)
should fix it.The text was updated successfully, but these errors were encountered: