mirror of
https://github.com/trezor/trezor-wallet
synced 2025-02-11 23:52:47 +00:00
Merge pull request #451 from trezor/fix/fetch-locales
Fix/error handling in fetching locales
This commit is contained in:
commit
31a9a19385
@ -86,13 +86,21 @@ export const toggleSidebar = (): WalletAction => ({
|
|||||||
|
|
||||||
export const fetchLocale = (locale: string): ThunkAction => (dispatch: Dispatch): void => {
|
export const fetchLocale = (locale: string): ThunkAction => (dispatch: Dispatch): void => {
|
||||||
fetch(`./l10n/${locale}.json`)
|
fetch(`./l10n/${locale}.json`)
|
||||||
.then(response => response.json())
|
.then(response => {
|
||||||
|
if (response.ok) {
|
||||||
|
return response.json();
|
||||||
|
}
|
||||||
|
throw Error(response.statusText);
|
||||||
|
})
|
||||||
.then(messages => {
|
.then(messages => {
|
||||||
dispatch({
|
dispatch({
|
||||||
type: WALLET.SET_LANGUAGE,
|
type: WALLET.SET_LANGUAGE,
|
||||||
locale,
|
locale,
|
||||||
messages,
|
messages,
|
||||||
});
|
});
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error(error);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user