Skip to content

Commit

Permalink
fix(broken-bouncer): fix broken connection string
Browse files Browse the repository at this point in the history
  • Loading branch information
Cali93 committed Oct 4, 2023
1 parent 575a4ba commit 3b243c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/verify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const verifyAndSignIn = async (req: Request, res: Response) => {
req.session.siwe = fields.data;
if (!fields.data.expirationTime) {
return res.status(422).json({
message: `Expected expirationTime to be set.`,
message: "Expected expirationTime to be set.",
});
}
req.session.cookie.expires = new Date(fields.data.expirationTime);
Expand Down

0 comments on commit 3b243c1

Please sign in to comment.