From e341992c8590716d8ad303d6f1910941a23915a0 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Thu, 27 Feb 2020 18:25:07 -0500 Subject: [PATCH] call doAuthenticate with internalSharing as true on web --- ui/redux/actions/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/redux/actions/app.js b/ui/redux/actions/app.js index a56934963..2f3a34828 100644 --- a/ui/redux/actions/app.js +++ b/ui/redux/actions/app.js @@ -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 });