Prettier format pending files
This commit is contained in:
parent
e96c5e74a6
commit
4ce59c891b
1 changed files with 6 additions and 1 deletions
|
|
@ -58,7 +58,12 @@ export default function handler(req: VercelRequest, res: VercelResponse) {
|
|||
});
|
||||
|
||||
// Verify the signature using Ed25519
|
||||
const isValid = verify("Ed25519", Buffer.from(message), publicKey, signatureBuffer);
|
||||
const isValid = verify(
|
||||
"Ed25519",
|
||||
Buffer.from(message),
|
||||
publicKey,
|
||||
signatureBuffer,
|
||||
);
|
||||
|
||||
if (!isValid) {
|
||||
console.error("[Discord] Signature verification failed");
|
||||
|
|
|
|||
Loading…
Reference in a new issue