kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
Auth: fix otherAccounts throwing a fullscreen error in local dev
rodzic
0f91282edc
commit
0f65c7bd7e
|
@ -242,7 +242,8 @@ export const fetchOwnAccounts = () =>
|
||||||
return state.auth.users.forEach((user) => {
|
return state.auth.users.forEach((user) => {
|
||||||
const account = state.accounts.get(user.id);
|
const account = state.accounts.get(user.id);
|
||||||
if (!account) {
|
if (!account) {
|
||||||
dispatch(verifyCredentials(user.access_token, user.url));
|
dispatch(verifyCredentials(user.access_token, user.url))
|
||||||
|
.catch(() => console.warn(`Failed to load account: ${user.url}`));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Ładowanie…
Reference in New Issue