Store mx_pass at the same point as access_token
So that we don't overwrite the existing one every time we try to register.
This commit is contained in:
parent
a887af9f92
commit
4f71f4c331
2 changed files with 11 additions and 7 deletions
|
@ -303,6 +303,12 @@ export function setLoggedIn(credentials) {
|
|||
localStorage.setItem("mx_device_id", credentials.deviceId);
|
||||
}
|
||||
|
||||
// The user registered as a PWLU (PassWord-Less User), the generated password
|
||||
// is cached here such that the user can change it at a later time.
|
||||
if (credentials.password) {
|
||||
localStorage.setItem("mx_pass", credentials.password);
|
||||
}
|
||||
|
||||
console.log("Session persisted for %s", credentials.userId);
|
||||
} catch (e) {
|
||||
console.warn("Error using local storage: can't persist session!", e);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue