Skip to content

Commit c08f0ae

Browse files
committed
fix again 🙄
1 parent 485f493 commit c08f0ae

File tree

1 file changed

+1
-1
lines changed
  • functions/zoom-meeting-webhook-handler

1 file changed

+1
-1
lines changed

functions/zoom-meeting-webhook-handler/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const handler = async function (event, context) {
2828

2929
const signature = `v0=${hashForVerify}`;
3030

31-
if (request.headers['x-zm-signature'] !== signature) {
31+
if (event.headers['x-zm-signature'] !== signature) {
3232
console.log('Unauthorized', event);
3333
return {
3434
statusCode: 401,

0 commit comments

Comments
 (0)