From 77b59662e51d29a226545f807a58f9bc56919359 Mon Sep 17 00:00:00 2001
From: Vitor Mateus <vitormateusalmeida@gmail.com>
Date: Wed, 30 Jan 2019 09:52:24 -0200
Subject: [PATCH] Fix error on invalid sessionToken

---
 bigbluebutton-html5/imports/startup/client/base.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bigbluebutton-html5/imports/startup/client/base.jsx b/bigbluebutton-html5/imports/startup/client/base.jsx
index daae9c83fc..0f3feb3259 100755
--- a/bigbluebutton-html5/imports/startup/client/base.jsx
+++ b/bigbluebutton-html5/imports/startup/client/base.jsx
@@ -128,7 +128,7 @@ class Base extends Component {
     const { meetingExisted } = this.state;
 
     return (
-      (!meetingExisted && !meetingExist)
+      (!meetingExisted && !meetingExist && Auth.loggedIn)
         ? <LoadingScreen />
         : (
           <IntlStartup locale={locale} baseControls={stateControls}>
-- 
GitLab