fix inverted conditional :/

pull/1/head
ansuz 2017-05-31 18:15:31 +02:00
parent 2e03485db4
commit 7b94106bac
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}