Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
Corrected the body that we post
Browse files Browse the repository at this point in the history
  • Loading branch information
Gonzalo Avalos Ribas authored and Gonzalo Avalos Ribas committed Jun 30, 2023
1 parent a9fba9b commit 9e2a672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crowdstrike/FalconAPIClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ export class FalconAPIClient {
});
}
if (response.status == 400) {
const body = response.body;
const body = await response.text();
this.logger.info(
{
body,
Expand Down

0 comments on commit 9e2a672

Please sign in to comment.