diff --git a/bigbluebutton-html5/imports/startup/client/auth.js b/bigbluebutton-html5/imports/startup/client/auth.js
index 4a0abfb71666ab6f45287c7248f6ce80afe2698a..bc34a6678a97a6816565d231a1560e027e65a048 100755
--- a/bigbluebutton-html5/imports/startup/client/auth.js
+++ b/bigbluebutton-html5/imports/startup/client/auth.js
@@ -17,7 +17,7 @@ export function joinRouteHandler(nextState, replace, callback) {
     replace({ pathname: '/error/404' });
     callback();
   }
-  
+
   // Old credentials stored in memory were being used when joining a new meeting
   Auth.clearCredentials();
 
@@ -66,7 +66,7 @@ export function joinRouteHandler(nextState, replace, callback) {
           const key = Object.keys(data).shift();
 
           const handledHTML5Parameters = [
-            'html5recordingbot'
+            'html5recordingbot',
           ];
           if (handledHTML5Parameters.indexOf(key) === -1) {
             return acc;
@@ -79,7 +79,7 @@ export function joinRouteHandler(nextState, replace, callback) {
             log('error', `Caught: ${e.message}`);
           }
 
-          return { ...acc, [key]: value};
+          return { ...acc, [key]: value };
         }, {}) : {};
 
       SessionStorage.setItem(METADATA_KEY, metakeys);
diff --git a/bigbluebutton-html5/imports/ui/services/auth/index.js b/bigbluebutton-html5/imports/ui/services/auth/index.js
index c145eea682bc7be18b0f371f7997f03df456ab8c..d950defbd6f4164b26aaad269262c0a201f73f77 100755
--- a/bigbluebutton-html5/imports/ui/services/auth/index.js
+++ b/bigbluebutton-html5/imports/ui/services/auth/index.js
@@ -122,7 +122,7 @@ class Auth {
       sessionToken: this.sessionToken,
       fullname: this.fullname,
       externUserID: this.externUserID,
-      confname: this.confname
+      confname: this.confname,
     };
   }
 
@@ -156,7 +156,7 @@ class Auth {
     this.logoutURL = null;
     this.sessionToken = null;
     this.fullname = null;
-    this.externUserID = null
+    this.externUserID = null;
     this.confname = null;
     return Promise.resolve(...args);
   }