oups, add a missing closing brace

pull/1/head
ansuz 2019-07-08 12:12:42 +02:00
parent 0dee1143ba
commit 5f5cd1e045
1 changed files with 1 additions and 1 deletions

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) {