Skip to content

Commit

Permalink
Merge branch 'main' into release/5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
willfarrell committed Nov 8, 2023
2 parents 9b3e5dd + 23bedfb commit ef7656a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/http-multipart-body-parser/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const parseMultipartData = (event, options) => {
...options.busboy,
headers: {
'content-type':
event.headers['Content-Type'] ?? event.headers['content-type']
event.headers?.['Content-Type'] ?? event.headers?.['content-type']
}
})

Expand Down

0 comments on commit ef7656a

Please sign in to comment.