mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-20 03:25:17 +01:00
Merge commit from fork
Co-authored-by: Eugen Rochko <eugen@zeonfederated.com>
This commit is contained in:
parent
6a233cbfcf
commit
d8f9db547a
@ -4,11 +4,10 @@ import { ACCOUNT_LOOKUP_FAIL } from '../actions/accounts';
|
|||||||
import { importAccounts } from '../actions/accounts_typed';
|
import { importAccounts } from '../actions/accounts_typed';
|
||||||
import { domain } from '../initial_state';
|
import { domain } from '../initial_state';
|
||||||
|
|
||||||
export const normalizeForLookup = str => {
|
const pattern = new RegExp(`@${domain}$`, 'gi');
|
||||||
str = str.toLowerCase();
|
|
||||||
const trailingIndex = str.indexOf(`@${domain.toLowerCase()}`);
|
export const normalizeForLookup = str =>
|
||||||
return (trailingIndex > 0) ? str.slice(0, trailingIndex) : str;
|
str.toLowerCase().replace(pattern, '');
|
||||||
};
|
|
||||||
|
|
||||||
const initialState = ImmutableMap();
|
const initialState = ImmutableMap();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user