1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-11 13:15:28 +03:00

fix(Trello Node): Remove GET request body (#8715)

This commit is contained in:
feelgood-interface 2024-02-22 15:44:06 +01:00 committed by कारतोफ्फेलस्क्रिप्ट™
parent b7d01aa061
commit c75b2406a5

View File

@ -28,6 +28,10 @@ export async function apiRequest(
json: true,
};
if (method === 'GET') {
delete options.body;
}
return await this.helpers.requestWithAuthentication.call(this, 'trelloApi', options);
}