diff options
author | kumavis <aaron@kumavis.me> | 2018-03-28 09:21:46 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2018-03-28 09:21:46 +0800 |
commit | ff26042b0c5456711210f5fd4e086e9f41bcb475 (patch) | |
tree | 587a19d839b0157dc5b334fb07b7447a276013ae | |
parent | 1a5eccdfc0610133a552fbcdc9353f66603af920 (diff) | |
download | tangerine-wallet-browser-ff26042b0c5456711210f5fd4e086e9f41bcb475.tar.gz tangerine-wallet-browser-ff26042b0c5456711210f5fd4e086e9f41bcb475.tar.zst tangerine-wallet-browser-ff26042b0c5456711210f5fd4e086e9f41bcb475.zip |
ui - actions - fix log for background call
-rw-r--r-- | ui/app/actions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/actions.js b/ui/app/actions.js index 0c0b97a98..58240054d 100644 --- a/ui/app/actions.js +++ b/ui/app/actions.js @@ -1803,9 +1803,9 @@ function setUseBlockie (val) { function updateCurrentLocale (key) { return (dispatch) => { dispatch(actions.showLoadingIndication()) - log.debug(`background.updateCurrentLocale`) fetchLocale(key) .then((localeMessages) => { + log.debug(`background.setCurrentLocale`) background.setCurrentLocale(key, (err) => { dispatch(actions.hideLoadingIndication()) if (err) { |