mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
👕 Fix lint issue
This commit is contained in:
parent
1d850da9fb
commit
4c7d3a918b
|
@ -868,7 +868,7 @@ export class HttpRequest implements INodeType {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
let sendRequest: any = requestOptions; // eslint-disable-line:no-any
|
let sendRequest: any = requestOptions; // tslint:disable-line:no-any
|
||||||
// Protect browser from sending large binary data
|
// Protect browser from sending large binary data
|
||||||
if (Buffer.isBuffer(sendRequest.body) && sendRequest.body.length > 250000) {
|
if (Buffer.isBuffer(sendRequest.body) && sendRequest.body.length > 250000) {
|
||||||
sendRequest = {
|
sendRequest = {
|
||||||
|
@ -877,7 +877,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