oups, add a missing closing brace

This commit is contained in:
ansuz
2019-07-08 12:12:42 +02:00
parent 0dee1143ba
commit 5f5cd1e045

View File

@@ -506,7 +506,7 @@ define([
var fixRoot = function (elem) {
if (typeof(files[ROOT]) !== "object") { debug("ROOT was not an object"); files[ROOT] = {}; }
var element = elem || files[ROOT];
if (!element) { return console.error("Invalid element in root");
if (!element) { return console.error("Invalid element in root"); }
var nbMetadataFolders = 0;
for (var el in element) {
if (element[el] === null) {