diff --git a/package-lock.json b/package-lock.json index 9959697..b3eae37 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5649,8 +5649,8 @@ } }, "lbryinc": { - "version": "github:lbryio/lbryinc#aebad10a9c5d725c3fedae4236d56f239a0bc1de", - "from": "github:lbryio/lbryinc#aebad10a9c5d725c3fedae4236d56f239a0bc1de", + "version": "github:lbryio/lbryinc#27b6fcb8391b54cc9ea4d0a52a6ee536e39aa166", + "from": "github:lbryio/lbryinc#27b6fcb8391b54cc9ea4d0a52a6ee536e39aa166", "requires": { "reselect": "^3.0.0" } diff --git a/package.json b/package.json index 34c95c0..5bc262a 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "@expo/vector-icons": "^8.1.0", "gfycat-style-urls": "^1.0.3", "lbry-redux": "lbryio/lbry-redux#8ac92e3abfa0a9aacdb2fa4a144c3fadc4da6b11", - "lbryinc": "lbryio/lbryinc#aebad10a9c5d725c3fedae4236d56f239a0bc1de", + "lbryinc": "lbryio/lbryinc#27b6fcb8391b54cc9ea4d0a52a6ee536e39aa166", "lodash": ">=4.17.11", "merge": ">=1.2.1", "moment": "^2.22.1", diff --git a/src/page/splash/view.js b/src/page/splash/view.js index b41835f..4e1eddb 100644 --- a/src/page/splash/view.js +++ b/src/page/splash/view.js @@ -91,8 +91,10 @@ class SplashScreen extends React.PureComponent { // user is authenticated, navigate to the main view if (user.has_verified_email) { NativeModules.UtilityModule.getSecureValue(Constants.KEY_WALLET_PASSWORD).then(walletPassword => { - getSync(walletPassword, () => this.getUserSettings()); - this.navigateToMain(); + getSync(walletPassword, () => { + this.getUserSettings(); + this.navigateToMain(); + }); }); return; } @@ -138,8 +140,10 @@ class SplashScreen extends React.PureComponent { if (user && user.id && user.has_verified_email) { // user already authenticated NativeModules.UtilityModule.getSecureValue(Constants.KEY_WALLET_PASSWORD).then(walletPassword => { - getSync(walletPassword, () => this.getUserSettings()); - this.navigateToMain(); + getSync(walletPassword, () => { + this.getUserSettings(); + this.navigateToMain(); + }); }); } else { NativeModules.VersionInfo.getAppVersion().then(appVersion => {