Mentions regex should be case-insensitive

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2022-01-17 20:26:45 +01:00
parent c13b36fed3
commit 58ab54cd9e
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ export function submitCompose(routerHistory, force = false) {
}
if (to && status) {
const mentions = status.match(/(?:^|\s|\.)@([a-z0-9_]+(?:@[a-z0-9\.\-]+)?)/g); // not a perfect regex
const mentions = status.match(/(?:^|\s|\.)@([a-z0-9_]+(?:@[a-z0-9\.\-]+)?)/gi); // not a perfect regex
if (mentions)
to = to.union(mentions.map(mention => mention.trim().slice(1)));