mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
[Server] Fix bug
This commit is contained in:
parent
66f55a2b1c
commit
e4675609d9
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ app.use(compression());
|
|||
app.use((req, res, next) => {
|
||||
res.header('X-Frame-Options', 'DENY');
|
||||
|
||||
res.locals.user = (req.headers['cookie'].match(/i=(!\w+)/) || [null, null])[1];
|
||||
res.locals.user = ((req.headers['cookie'] || '').match(/i=(!\w+)/) || [null, null])[1];
|
||||
|
||||
next();
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue