🐛 Fix parsing response issue when uploading file (Dropbox) (#1502)

This commit is contained in:
MedAliMarz 2021-03-03 08:20:24 +01:00 committed by GitHub
parent 79aab5c692
commit f0a83e5ca5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -522,9 +522,9 @@ export class Dropbox implements INodeType {
endpoint = 'https://content.dropboxapi.com/2/files/upload';
if (this.getNodeParameter('binaryData', i) === true) {
options = { json: false };
options = { json: false };
if (this.getNodeParameter('binaryData', i) === true) {
// Is binary file to upload
const item = items[i];