Skip to content

Commit

Permalink
fix(Trello Node): Remove GET request body (#8715)
Browse files Browse the repository at this point in the history
  • Loading branch information
feelgood-interface authored and netroy committed Feb 23, 2024
1 parent b7d01aa commit c75b240
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/nodes-base/nodes/Trello/GenericFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit c75b240

Please sign in to comment.