Skip to content
Snippets Groups Projects
Commit ed173b81 authored by Anton Georgiev's avatar Anton Georgiev
Browse files

fix linting

parent ff3b19a3
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment