Use account lookup in fetchAccountByUsername

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
merge-requests/941/head
marcin mikołajczak 2021-12-30 16:29:05 +01:00
rodzic b5b089ac7d
commit 6805e88b69
1 zmienionych plików z 9 dodań i 1 usunięć

Wyświetl plik

@ -148,8 +148,16 @@ export function fetchAccountByUsername(username) {
const instance = state.get('instance');
const features = getFeatures(instance);
const me = state.get('me');
if (features.accountByUsername) {
if (!me && features.accountLookup) {
dispatch(accountLookup(username)).then(account => {
dispatch(fetchAccountSuccess(account));
}).catch(error => {
dispatch(fetchAccountFail(null, error));
dispatch(importErrorWhileFetchingAccountByUsername(username));
});
} else if (features.accountByUsername) {
api(getState).get(`/api/v1/accounts/${username}`).then(response => {
dispatch(fetchRelationships([response.data.id]));
dispatch(importFetchedAccount(response.data));