Skip to content

Commit 4490725

Browse files
committed
Fix typo in server/js/app.js
1 parent ba46128 commit 4490725

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web-portal/server/js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ app.get('/main',
9595
isVerified: (await userRouter.getIsVerified(req) ? 'true' : 'false'),
9696
nodisclaimer: (await userRouter.getNoDisclaimer(req) ? 'true' : 'false'),
9797
isNCO: config.isNCO(req),
98-
isAutoLogin: req.query.autologin,
98+
isAutoLogin: (req.query.autologin != undefined),
9999
notecards: (req.query.notecards != undefined),
100100
rooms: (req.query.rooms != undefined)
101101
}

0 commit comments

Comments
 (0)