node-virustotal
node-virustotal copied to clipboard
Large file upload error
Looks like file size comparison problem in S3.js:
- const thirtyTwoMegabytes = 34359738368;
+ const thirtyTwoMegabytes = 33554432;
Also:
380: res = JSON.parse(res);
381: putInLine(function(){
382: uploadFileToURL(asBuffer, res.data, filename, filetype, callback);
383: });
I have created a pull request to fix this.