Skip to content

Commit

Permalink
fix: empty store
Browse files Browse the repository at this point in the history
  • Loading branch information
whilefoo committed Oct 27, 2024
1 parent af5da64 commit 9eb1014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default {
webhookSecret: env.APP_WEBHOOK_SECRET,
appId: env.APP_ID,
privateKey: env.APP_PRIVATE_KEY,
pluginChainState: new EmptyStore(env.PLUGIN_CHAIN_STATE),
pluginChainState: new EmptyStore(),
});
bindHandlers(eventHandler);
await eventHandler.webhooks.verifyAndReceive({ id, name: eventName, payload: await request.text(), signature: signatureSha256 });
Expand Down

0 comments on commit 9eb1014

Please sign in to comment.