fix(spr): Improve log comment for user not being a 3DS

This commit is contained in:
Daniel López Guimaraes 2025-07-22 12:31:12 +01:00 committed by GitHub
parent f1a529e067
commit bba6982748
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -88,7 +88,7 @@ spr.post('/relay/0', multipartParser, async (request, response) => {
// * Check that the account is a 3DS and isn't banned
if (!request.nexAccount.friendCode || request.nexAccount.accessLevel < 0) {
LOG_INFO(`{request.pid}: User is banned`);
LOG_INFO(`{request.pid}: User is not a 3DS or is banned`);
response.sendStatus(403);
return;
}