We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Storing data in localStorage and login results in data lost (or rolled back to previous state)
window.localStorage.getItem("test");//-> Returns value2 window.localStorage.setItem("test","value2"); //do some things window.localStorage.setItem("test","value1"); lightdm.authenticate(user); lightdm.respond(pwd); lightdm.start_session();
When storing an item into storage and later retrieve it get that value
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment
Bug description
Storing data in localStorage and login results in data lost (or rolled back to previous state)
Steps to reproduce
window.localStorage.getItem("test");//-> Returns value2
window.localStorage.setItem("test","value2");
//do some things
window.localStorage.setItem("test","value1");
lightdm.authenticate(user);
lightdm.respond(pwd);
lightdm.start_session();
Expected behavior
When storing an item into storage and later retrieve it get that value
The text was updated successfully, but these errors were encountered: