diff --git a/src/renderer/index.js b/src/renderer/index.js index 631e42af1..b81edfd2c 100644 --- a/src/renderer/index.js +++ b/src/renderer/index.js @@ -15,7 +15,7 @@ import { } from 'redux/actions/app'; import { doNavigate } from 'redux/actions/navigation'; import { doDownloadLanguages, doUpdateIsNightAsync } from 'redux/actions/settings'; -import { doUserEmailVerify, doAuthenticate } from 'redux/actions/user'; +import { doUserEmailVerify } from 'redux/actions/user'; import 'scss/all.scss'; import store from 'store'; import app from './app'; @@ -95,8 +95,6 @@ document.addEventListener('click', event => { }); const init = () => { - app.store.dispatch(doAuthenticate()); - autoUpdater.on('update-downloaded', () => { app.store.dispatch(doAutoUpdate()); }); diff --git a/src/renderer/redux/actions/app.js b/src/renderer/redux/actions/app.js index fa1483c8f..f9c868baf 100644 --- a/src/renderer/redux/actions/app.js +++ b/src/renderer/redux/actions/app.js @@ -9,6 +9,7 @@ import { doFetchRewardedContent } from 'redux/actions/content'; import { doFetchFileInfosAndPublishedClaims } from 'redux/actions/file_info'; import { doAuthNavigate } from 'redux/actions/navigation'; import { doFetchDaemonSettings } from 'redux/actions/settings'; +import { doAuthenticate } from 'redux/actions/user'; import { doBalanceSubscribe } from 'redux/actions/wallet'; import { doPause } from 'redux/actions/media'; import { doCheckSubscriptions } from 'redux/actions/subscriptions'; @@ -288,6 +289,7 @@ export function doDaemonReady() { return (dispatch, getState) => { const state = getState(); + dispatch(doAuthenticate()); dispatch({ type: ACTIONS.DAEMON_READY }); dispatch(doFetchDaemonSettings()); dispatch(doBalanceSubscribe());