/api/v1/account_by_username -> /api/v1/accounts

stable/1.0.x
Alex Gleason 2020-03-28 00:57:26 -05:00
rodzic a3fbd4bb6d
commit 8458ce726c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -128,7 +128,7 @@ export function fetchAccount(id) {
export function fetchAccountByUsername(username) {
return (dispatch, getState) => {
api(getState).get(`/api/v1/account_by_username/${username}`).then(response => {
api(getState).get(`/api/v1/accounts/${username}`).then(response => {
dispatch(importFetchedAccount(response.data));
}).then(() => {
dispatch(fetchAccountSuccess());