fix an accidentally flipped boolean

pull/1/head
ansuz 2021-07-26 14:10:32 +05:30
parent 3c6c517506
commit 9ca3682df9
1 changed files with 1 additions and 1 deletions

View File

@ -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] = {};
}