Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
dohaki committed Dec 24, 2024
1 parent 2110f3e commit 5c6ea57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/relay/jobs/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default async function handler(req: VercelRequest, res: VercelResponse) {
const isValid = await messageReceiver.verify({
signature: (req.headers["upstash-signature"] ||
req.headers["Upstash-Signature"]) as string,
body: req.body,
body: JSON.stringify(req.body),
});

if (!isValid) {
Expand Down

0 comments on commit 5c6ea57

Please sign in to comment.