Skip to content

Commit

Permalink
fix: 🐛 Fix object error on empty bodies
Browse files Browse the repository at this point in the history
  • Loading branch information
Hobart2967 committed Oct 2, 2023
1 parent a6aee06 commit 26c6fd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/request-verification.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export class RequestVerificationService {
host: request.hostname,
method: request.method,
path: url,
body: request.rawBody || request.body || undefined,
body: request.rawBody || undefined,
service: incomingSignature.credential.service,
headers,
region: incomingSignature.credential.region,
Expand Down

0 comments on commit 26c6fd0

Please sign in to comment.