uploader-for-google-drive-resumable-upload-url
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -35,3 +35,8 @@ // Copyright 2017- Paul Brewer, Economic and Financial Technology Consulting LLC | ||
if (axios){ | ||
const response = await axios.post(url,dataStream,headers); | ||
const options = { | ||
headers, | ||
maxContentLength: Infinity, | ||
maxBodyLength: Infinity | ||
}; | ||
const response = await axios.post(url,dataStream,options); | ||
if (response.status>=400){ | ||
@@ -38,0 +43,0 @@ throw new Error(`upload error code: ${response.status} ${response.statusText}`); |
{ | ||
"name": "uploader-for-google-drive-resumable-upload-url", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "uploader for Resumable Upload urls from Google Drive API v3", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
15447
288