8000 Fixed the response object to contain the request data · aceew/lambda-proxy-router@87c1c24 · GitHub
[go: up one dir, main page]

Skip to content

Commit 87c1c24

Browse files
committed
Fixed the response object to contain the request data
1 parent cef30fa commit 87c1c24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default class Alpr {
4848

4949
this.routeMatched = true;
5050

51-
const request = new Request(this.event, this.context);
51+
const request = new Request({ event: this.event, context: this.context });
5252
const instancedClass = this;
5353

5454
/**

0 commit comments

Comments
 (0)
0