return falsey if userHash is junk

pull/1/head
ansuz 2017-05-31 18:08:41 +02:00
parent 105e5cdac9
commit 936bf8df9d
1 changed files with 2 additions and 2 deletions

View File

@ -246,10 +246,10 @@ define([
var getUserHash = common.getUserHash = function () {
var hash = localStorage[userHashKey];
if (hash && ['undefined', 'undefined/'].indexOf(hash) !== -1) {
if (hash && ['undefined', 'undefined/'].indexOf(hash) === -1) {
var sHash = common.serializeHash(hash);
if (sHash !== hash) { localStorage[userHashKey] = sHash; }
}
} else { return; }
return hash;
};