From 3e5779340630eb194f85a7f6142b56a66d8add35 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Sun, 14 Apr 2019 23:45:13 -0400 Subject: [PATCH] remove settings_get and balanceSubscribe from web calls --- src/ui/redux/actions/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/redux/actions/app.js b/src/ui/redux/actions/app.js index bb6be6580..c8294d72a 100644 --- a/src/ui/redux/actions/app.js +++ b/src/ui/redux/actions/app.js @@ -262,7 +262,7 @@ export function doCheckDaemonVersion() { // @if TARGET='app' Lbry.version().then(({ lbrynet_version: lbrynetVersion }) => { // Avoid the incompatible daemon modal if running in dev mode - // Lets you run a different daemon than the one specified in package.json + // Lets you run a different daemon than the one specified in package.json if (config.lbrynetDaemonVersion === lbrynetVersion) { return dispatch({ type: ACTIONS.DAEMON_VERSION_MATCH, @@ -314,10 +314,10 @@ export function doDaemonReady() { dispatch(doAuthenticate(appVersion)); dispatch({ type: ACTIONS.DAEMON_READY }); - dispatch(doFetchDaemonSettings()); - dispatch(doBalanceSubscribe()); // @if TARGET='app' + dispatch(doFetchDaemonSettings()); + dispatch(doBalanceSubscribe()); dispatch(doFetchFileInfosAndPublishedClaims()); if (!selectIsUpgradeSkipped(state)) { dispatch(doCheckUpgradeAvailable());