We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4490725 commit f7aa34eCopy full SHA for f7aa34e
web-portal/client/js/main.js
@@ -109,7 +109,7 @@ window.addEventListener('load', (event) => {
109
dlg.showModal();
110
}
111
112
- if(isAutologin) startSession("interlisp");
+ if(isAutoLogin) startSession("interlisp");
113
});
114
115
function startSession (interlispOrXterm) {
web-portal/server/js/app.js
@@ -105,7 +105,7 @@ app.get('/main',
105
app.get('/guest',
106
(req, res) => {
107
const newQuery = {};
108
- newQuery.autoLogin = "";
+ newQuery.autologin = "";
newQuery.username = config.guestUsername;
newQuery.password = config.guestPassword;
if(req.query.notecards != undefined) newQuery.notecards="";
0 commit comments