andrewrk / node-s3-client

high level amazon s3 client for node.js
MIT License
1k stars 303 forks source link

uploader.on('end',function... returns ETag in first attribute #203

Open FranciZ opened 6 years ago

FranciZ commented 6 years ago

This is my uploader end event.

uploader.on('end', function (url) {
    console.log(url); // { ETag: '"d59470ad72595fbfef8c4b986e675b47"' } 
});

The content of that attribute is not the url. Anyone else having this issue?