Remove other guestAccess arg

This commit is contained in:
David Baker 2016-07-22 14:00:23 +01:00
parent ea5e021d8d
commit b7e95b3883

View file

@ -100,7 +100,7 @@ class MatrixClientPeg {
const guestAccess = new GuestAccess(localStorage); const guestAccess = new GuestAccess(localStorage);
if (access_token && user_id && hs_url) { if (access_token && user_id && hs_url) {
console.log("Restoring session for %s", user_id); console.log("Restoring session for %s", user_id);
this._createClient(hs_url, is_url, user_id, access_token, guestAccess); this._createClient(hs_url, is_url, user_id, access_token);
} else { } else {
console.log("Session not found."); console.log("Session not found.");
} }