🛳🍙 Checkpoint

./server.js:933874/84
This commit is contained in:
Glitch (hello-express) 2019-11-03 15:47:00 +00:00
parent d3c87768d6
commit 2f679e086b
1 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,8 @@ app.get("/status", (req, res) => {
// parse login and password from headers
const b64auth = (req.headers.authorization || "").split(" ")[1] || "";
const [_, login, password] = new Buffer(b64auth, 'base64').toString().match(/(.*):(.*)/) || []; // slightly modified as
const [_, login, password] = new Buffer(b64auth, 'base64').toString().match(/(.*):(.*)/) || []; // slightly modified as we use : in username
if (
!login ||
!password ||