Resolve "Nothing happens on clicking on the room icon on the right top side when we again visit the IM without deleting the browser cookies"

This commit is contained in:
N Pex 2022-02-02 12:49:57 +00:00
parent f354e10aa7
commit 167ef171ca
5 changed files with 8 additions and 8 deletions

View file

@ -196,10 +196,10 @@ export default {
},
rememberMe: {
get: function () {
return !this.$store.state.useLocalStorage;
return this.$store.state.useLocalStorage;
},
set: function (rememberMe) {
this.$store.commit("setUseLocalStorage", !rememberMe);
this.$store.commit("setUseLocalStorage", rememberMe);
},
},