fix: show email after refreshing the app
This commit is contained in:
parent
3694104b0d
commit
0ec7a30ccd
1 changed files with 2 additions and 0 deletions
|
@ -28,6 +28,7 @@ import {
|
|||
selectRemoteVersion,
|
||||
selectUpgradeTimer,
|
||||
} from 'redux/selectors/app';
|
||||
import { doAuthenticate } from 'redux/actions/user';
|
||||
import { lbrySettings as config } from 'package.json';
|
||||
|
||||
const { autoUpdater } = remote.require('electron-updater');
|
||||
|
@ -336,6 +337,7 @@ export function doDaemonReady() {
|
|||
return (dispatch, getState) => {
|
||||
const state = getState();
|
||||
|
||||
dispatch(doAuthenticate());
|
||||
dispatch({ type: ACTIONS.DAEMON_READY });
|
||||
dispatch(doFetchDaemonSettings());
|
||||
dispatch(doBalanceSubscribe());
|
||||
|
|
Loading…
Reference in a new issue