call doAuthenticate with internalSharing as true on web
This commit is contained in:
parent
9387b8d3a0
commit
e341992c85
1 changed files with 1 additions and 1 deletions
|
@ -326,7 +326,7 @@ export function doDaemonReady() {
|
|||
const state = getState();
|
||||
|
||||
// TODO: call doFetchDaemonSettings, then get usage data, and call doAuthenticate once they are loaded into the store
|
||||
const shareUsageData = window.localStorage.getItem(SHARE_INTERNAL) === 'true';
|
||||
const shareUsageData = window.localStorage.getItem(SHARE_INTERNAL) === 'true' || IS_WEB;
|
||||
|
||||
dispatch(doAuthenticate(appVersion, undefined, undefined, shareUsageData));
|
||||
dispatch({ type: ACTIONS.DAEMON_READY });
|
||||
|
|
Loading…
Reference in a new issue