Skip to content

Commit

Permalink
chore: build
Browse files Browse the repository at this point in the history
  • Loading branch information
taratatach committed Feb 25, 2021
1 parent 08a782d commit 6b3cd59
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion dist/cozy-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -5822,7 +5822,10 @@ var doUpload = function () {
'Content-Type': contentType
};

if (contentLength) headers['Content-Length'] = String(contentLength);
if (contentLength) {
headers['Content-Length'] = String(contentLength);
finalpath = addQuerystringParam(finalpath, 'Size', String(contentLength));
}
if (checksum) headers['Content-MD5'] = checksum;
if (lastModifiedDate) headers['Date'] = lastModifiedDate.toGMTString();
if (ifMatch) headers['If-Match'] = ifMatch;
Expand Down
2 changes: 1 addition & 1 deletion dist/cozy-client.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cozy-client.min.js

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion dist/cozy-client.node.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cozy-client.node.js.map

Large diffs are not rendered by default.

0 comments on commit 6b3cd59

Please sign in to comment.