Bugfix: Cannot read property 'forEach' of undefined.

This commit is contained in:
dgazcon27 2018-04-20 21:10:57 +00:00 committed by GitHub
parent eb11b4d660
commit 87bd3bb128
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -99,6 +99,7 @@ FileSystemProvider.prototype.getContainers = function(cb) {
fs.readdir(self.root, function(err, files) {
var containers = [];
var tasks = [];
var files = files || [];
files.forEach(function(f) {
tasks.push(fs.stat.bind(fs, path.join(self.root, f)));
});