aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-06-02 06:46:31 +0800
committerGitHub <noreply@github.com>2018-06-02 06:46:31 +0800
commit1a18f03e2fe900876aa93d8846b06b24bc198224 (patch)
treee6e8f8e3e0319e8655dd857acc4ae548cf6cc4dd /app/scripts
parent003172231a46ea4587dfdf55ec3ba0803597419b (diff)
downloadtangerine-wallet-browser-1a18f03e2fe900876aa93d8846b06b24bc198224.tar
tangerine-wallet-browser-1a18f03e2fe900876aa93d8846b06b24bc198224.tar.gz
tangerine-wallet-browser-1a18f03e2fe900876aa93d8846b06b24bc198224.tar.bz2
tangerine-wallet-browser-1a18f03e2fe900876aa93d8846b06b24bc198224.tar.lz
tangerine-wallet-browser-1a18f03e2fe900876aa93d8846b06b24bc198224.tar.xz
tangerine-wallet-browser-1a18f03e2fe900876aa93d8846b06b24bc198224.tar.zst
tangerine-wallet-browser-1a18f03e2fe900876aa93d8846b06b24bc198224.zip
Fix return value of migration 26 when missing KC or PC
Diffstat (limited to 'app/scripts')
-rw-r--r--app/scripts/migrations/026.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/migrations/026.js b/app/scripts/migrations/026.js
index 1b8a91a45..4e907e09c 100644
--- a/app/scripts/migrations/026.js
+++ b/app/scripts/migrations/026.js
@@ -27,7 +27,7 @@ module.exports = {
function transformState (state) {
if (!state.KeyringController || !state.PreferencesController) {
- return
+ return state
}
if (!state.KeyringController.walletNicknames) {