fix an accidentally flipped boolean
parent
3c6c517506
commit
9ca3682df9
|
@ -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] = {};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue