Skip to content

Commit

Permalink
i[js:core] fix Studio-42#2845 size request with wrong params targets
Browse files Browse the repository at this point in the history
  • Loading branch information
nao-pon committed Feb 3, 2019
1 parent 06e000f commit 4d1b0c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/elFinder.js
Original file line number Diff line number Diff line change
Expand Up @@ -9547,9 +9547,9 @@ elFinder.prototype = {
cache.push($.Deferred().resolve(file.sizeInfo? file.sizeInfo : {size: file.size, dirCnt: 0, fileCnt : 1}));
} else {
if (! grps[root]) {
grps[root] = [ this ];
grps[root] = [ this.toString() ];
} else {
grps[root].push(this);
grps[root].push(this.toString());
}
}
});
Expand Down

0 comments on commit 4d1b0c4

Please sign in to comment.