Merge pull request #135 from loic-ps/ft/add-provider-response-to-upload

Add provider information to upload response
This commit is contained in:
Richard Pringle 2016-08-18 13:37:07 -04:00 committed by GitHub
commit 0453814ad1
1 changed files with 5 additions and 2 deletions

View File

@ -132,8 +132,11 @@ exports.upload = function(provider, req, res, options, cb) {
self.emit('error', err);
});
var endFunc = function() {
var endFunc = function(providerFile) {
self._flushing--;
file.providerResponse = providerFile;
var values = files[part.name];
if (values === undefined) {
values = [file];
@ -146,7 +149,7 @@ exports.upload = function(provider, req, res, options, cb) {
};
writer.on('success', function(file) {
endFunc();
endFunc(file);
});
var fileSize = 0;