mirror of https://github.com/vector-im/riot-web
Yes yes, eslint
parent
c11d26d809
commit
7ac82a23ab
|
@ -131,8 +131,8 @@ export function getStoredSessionOwner() {
|
||||||
* for a real user. If there is no stored session, return null.
|
* for a real user. If there is no stored session, return null.
|
||||||
*/
|
*/
|
||||||
export function getStoredSessionIsGuest() {
|
export function getStoredSessionIsGuest() {
|
||||||
const {hsUrl, isUrl, accessToken, userId, deviceId, isGuest} = _getLocalStorageSessionVars();
|
const sessVars = _getLocalStorageSessionVars();
|
||||||
return hsUrl && userId && accessToken ? isGuest : null;
|
return sessVars.hsUrl && sessVars.userId && sessVars.accessToken ? sessVars.isGuest : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue