mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
[Glitch] In keyword filter, account for reblogs, HTML and whole-words
Port 404c7702ec
to glitch-soc
This commit is contained in:
parent
00c1386b9d
commit
6777dfc8d9
@ -45,7 +45,7 @@ export const regexFromFilters = filters => {
|
||||
return null;
|
||||
}
|
||||
|
||||
return new RegExp(filters.map(filter => escapeRegExp(filter.get('phrase'))).join('|'), 'i');
|
||||
return new RegExp(filters.map(filter => escapeRegExp(filter.get('phrase'))).map(expr => `\\b${expr}\\b`).join('|'), 'i');
|
||||
};
|
||||
|
||||
export const makeGetStatus = () => {
|
||||
|
Loading…
Reference in New Issue
Block a user