mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
fix(Trello Node): Remove GET request body (#8715)
This commit is contained in:
committed by
GitHub
parent
8a88d15684
commit
8c4a744c56
@@ -28,6 +28,10 @@ export async function apiRequest(
|
|||||||
json: true,
|
json: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (method === 'GET') {
|
||||||
|
delete options.body;
|
||||||
|
}
|
||||||
|
|
||||||
return await this.helpers.requestWithAuthentication.call(this, 'trelloApi', options);
|
return await this.helpers.requestWithAuthentication.call(this, 'trelloApi', options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user