We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc6df3a commit ce703efCopy full SHA for ce703ef
1 file changed
apps/dokploy/pages/api/deploy/github.ts
@@ -53,7 +53,10 @@ export default async function handler(
53
secret: githubResult.githubWebhookSecret,
54
});
55
56
- const verified = await webhooks.verify(JSON.stringify(githubBody), signature as string);
+ const verified = await webhooks.verify(
57
+ JSON.stringify(githubBody),
58
+ signature as string,
59
+ );
60
61
if (!verified) {
62
res.status(401).json({ message: "Unauthorized" });
0 commit comments