From 9ca3682df95dac85084d912bb5742707f56df35e Mon Sep 17 00:00:00 2001 From: ansuz Date: Mon, 26 Jul 2021 14:10:32 +0530 Subject: [PATCH] fix an accidentally flipped boolean --- www/common/outer/userObject.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/outer/userObject.js b/www/common/outer/userObject.js index 4051c79c1..7108da936 100644 --- a/www/common/outer/userObject.js +++ b/www/common/outer/userObject.js @@ -935,7 +935,7 @@ define([ } }; var fixStaticData = function () { - if (Util.isObject(files[STATIC_DATA])) { + if (!Util.isObject(files[STATIC_DATA])) { debug("STATIC_DATA was not an object"); files[STATIC_DATA] = {}; }