Bugfix: Cannot read property 'forEach' of undefined.
This commit is contained in:
parent
eb11b4d660
commit
87bd3bb128
|
@ -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)));
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue