mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
🔀 Merge branch 'fix/http-request-node'
This commit is contained in:
commit
b31820e7a0
|
@ -864,7 +864,9 @@ export class HttpRequest implements INodeType {
|
||||||
if (requestOptions.headers === undefined) {
|
if (requestOptions.headers === undefined) {
|
||||||
requestOptions.headers = {};
|
requestOptions.headers = {};
|
||||||
}
|
}
|
||||||
requestOptions.headers['Content-Type'] = 'application/json';
|
if (['POST', 'PUT', 'PATCH'].includes(requestMethod)) {
|
||||||
|
requestOptions.headers['Content-Type'] = 'application/json';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if (options.bodyContentType === 'raw') {
|
} else if (options.bodyContentType === 'raw') {
|
||||||
requestOptions.json = false;
|
requestOptions.json = false;
|
||||||
|
@ -918,7 +920,7 @@ export class HttpRequest implements INodeType {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
this.sendMessageToUI(sendRequest);
|
this.sendMessageToUI(sendRequest);
|
||||||
} catch (e) {}
|
} catch (e) { }
|
||||||
|
|
||||||
// Now that the options are all set make the actual http request
|
// Now that the options are all set make the actual http request
|
||||||
if (oAuth1Api !== undefined) {
|
if (oAuth1Api !== undefined) {
|
||||||
|
|
Loading…
Reference in a new issue