-
Notifications
You must be signed in to change notification settings - Fork 372
Open
Description
Hi,
It looks like the following line is causing an issue when getting a list of files in Azure storage:
| if (body.Blobs && body.Blobs.Blob) { |
when modified to following the result comes back correctly :
if (body.EnumerationResults.Blobs && body.EnumerationResults.Blobs.Blob) {
return callback(null, self._toArray(body.EnumerationResults.Blobs.Blob).map(function (file) {
file.container = container;
return new storage.File(self, file);
}));
}
Metadata
Metadata
Assignees
Labels
No labels