call doAuthenticate with internalSharing as true on web

This commit is contained in:
Sean Yesmunt 2020-02-27 18:25:07 -05:00
parent 9387b8d3a0
commit e341992c85

View file

@ -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 });