remove leftover debug statement

This commit is contained in:
b1ek 2023-02-27 23:40:48 +10:00
parent 7b3c7f5678
commit c90a144d1a
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ module.exports = (router) => {
return;
}
if (user.accessLevel < 4 || true) {
if (user.accessLevel < 4) {
res.status(401).send('Forbidden');
return;
}