Skip to content

Commit ce703ef

Browse files
[autofix.ci] apply automated fixes
1 parent fc6df3a commit ce703ef

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

apps/dokploy/pages/api/deploy/github.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,10 @@ export default async function handler(
5353
secret: githubResult.githubWebhookSecret,
5454
});
5555

56-
const verified = await webhooks.verify(JSON.stringify(githubBody), signature as string);
56+
const verified = await webhooks.verify(
57+
JSON.stringify(githubBody),
58+
signature as string,
59+
);
5760

5861
if (!verified) {
5962
res.status(401).json({ message: "Unauthorized" });

0 commit comments

Comments
 (0)