Fixed a logout bug

This commit is contained in:
2023-06-26 22:26:06 +10:00
parent 95e6bd178e
commit 98887eecce
3 changed files with 4 additions and 7 deletions
@@ -27,7 +27,7 @@ module.exports = async (req, res, next) => {
return res.status(403).send("IP address banned");
}
console.log(`IP allowed\t${address}\t\t\t${date.toTimeString()}`);
// console.log(`IP allowed\t${address}\t\t\t${date.toTimeString()}`);
return next();
};