mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
👕 Fix lint issue
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user