Skip to content

Commit

Permalink
Release 1.1.3 (#18)
Browse files Browse the repository at this point in the history
Co-authored-by: Giovanni Fatelli <[email protected]>
  • Loading branch information
cdconn00 and Frafire authored Apr 29, 2023
1 parent e586f0b commit 804ec87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers/UserController.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ router.post("/login", oAuth, async (req, res) => {

res.cookie("token", apiToken, {
httpOnly: true,
maxAge: 2592000000,
maxAge: 432000000,
sameSite: true,
}); // Expires in 30 days
}); // Expires in 5 days
} catch (e) {
req.app.Sentry.captureException(e);
res.stdRes.ret_det = e;
Expand Down

0 comments on commit 804ec87

Please sign in to comment.