From 8762bf05f92064fbec5fdf997d7fa86dc54b4ef1 Mon Sep 17 00:00:00 2001 From: Miguel Alatzar Date: Tue, 2 Jul 2019 18:40:39 -0700 Subject: [PATCH] Launch app without authentication if already started --- app/mattermost.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mattermost.js b/app/mattermost.js index 8f2d56903..f9d160281 100644 --- a/app/mattermost.js +++ b/app/mattermost.js @@ -26,7 +26,7 @@ export const store = configureStore(initialState); const init = async () => { if (EphemeralStore.appStarted) { - launchAppAndAuthenticateIfNeeded(); + launchApp(); return; }