diff --git a/ui/redux/actions/settings.js b/ui/redux/actions/settings.js index 579639210..9c62d833d 100644 --- a/ui/redux/actions/settings.js +++ b/ui/redux/actions/settings.js @@ -301,7 +301,8 @@ export function doFetchLanguage(language) { .then((r) => r.json()) .then((j) => { window.app_strings = j; - }); + }) + .catch(() => {}); } // @endif };