JS: Fix a comment

Apparently this comment used to say 'NOT OK' but clearly 'OK' was meant
This commit is contained in:
Asger F
2025-02-21 20:20:20 +01:00
parent cd788bc509
commit 0f23c33d3c

View File

@@ -22,7 +22,7 @@ app.post("/login", (req, res) => {
});
app.get("/login2", (req, res) => {
const username = req.param('username'); // $ Alert - usernames are fine
const username = req.param('username'); // OK - usernames are fine
const password = req.param('password'); // $ Alert - password read
checkUser(username, password, (result) => {
res.send(result);