fix inverted conditional :/
parent
2e03485db4
commit
7b94106bac
|
@ -246,7 +246,7 @@ define([
|
|||
var getUserHash = common.getUserHash = function () {
|
||||
var hash = localStorage[userHashKey];
|
||||
|
||||
if (['undefined', 'undefined/'].indexOf(hash) === -1) {
|
||||
if (['undefined', 'undefined/'].indexOf(hash) !== -1) {
|
||||
localStorage.removeItem(userHashKey);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue