Skip to content

Commit

Permalink
Now the code doesn't know when the statement ends
Browse files Browse the repository at this point in the history
  • Loading branch information
trubb committed Aug 2, 2024
1 parent a624429 commit 7b6cd12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const server = http.createServer(function (req, res) {

validateUser(req, function (err) {
if (err) {
res.statusCode = 401;
res.statusCode = 401
res.write('Authorize yourself at anrop.se first')
res.end()
} else {
Expand Down

0 comments on commit 7b6cd12

Please sign in to comment.