Yes yes, eslint

This commit is contained in:
David Baker 2019-05-14 12:11:07 +01:00
parent c11d26d809
commit 7ac82a23ab

View File

@ -131,8 +131,8 @@ export function getStoredSessionOwner() {
* for a real user. If there is no stored session, return null.
*/
export function getStoredSessionIsGuest() {
const {hsUrl, isUrl, accessToken, userId, deviceId, isGuest} = _getLocalStorageSessionVars();
return hsUrl && userId && accessToken ? isGuest : null;
const sessVars = _getLocalStorageSessionVars();
return sessVars.hsUrl && sessVars.userId && sessVars.accessToken ? sessVars.isGuest : null;
}
/**