theam / aws-lambda-haskell-runtime

⚡Haskell runtime for AWS Lambda
https://theam.github.io/aws-lambda-haskell-runtime/
Other
269 stars 48 forks source link

Fixed a bug with UseWithAPIGateway and empty request bodies #64

Closed dnikolovv closed 4 years ago

dnikolovv commented 4 years ago

Fixed a bug that caused requests with empty bodies (e.g. GET) to not execute.

The problem was that ApiGatewayRequest assumed there'll always be a body attached, which is not the case.

NickSeagull commented 4 years ago

Thanks!!