Mentions regex should be case-insensitive

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
profile-avatar-switcher
marcin mikołajczak 2022-01-17 20:26:45 +01:00
rodzic c13b36fed3
commit 58ab54cd9e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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)));