mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 12:35:46 +03:00
👕 Fix lint issue
This commit is contained in:
parent
1d850da9fb
commit
4c7d3a918b
@ -868,7 +868,7 @@ export class HttpRequest implements INodeType {
|
||||
}
|
||||
|
||||
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
|
||||
if (Buffer.isBuffer(sendRequest.body) && sendRequest.body.length > 250000) {
|
||||
sendRequest = {
|
||||
@ -877,7 +877,7 @@ export class HttpRequest implements INodeType {
|
||||
};
|
||||
}
|
||||
this.sendMessageToUI(sendRequest);
|
||||
} catch (e) {};
|
||||
} catch (e) {}
|
||||
|
||||
// Now that the options are all set make the actual http request
|
||||
if (oAuth1Api !== undefined) {
|
||||
|
Loading…
Reference in New Issue
Block a user