fix(Core/DB) - Correct the max length of a username to 17 characters (#21183)

This commit is contained in:
FlyingArowana
2025-01-19 07:18:56 +00:00
committed by GitHub
parent 20ad1c68ec
commit eb37cd8d3e
2 changed files with 11 additions and 1 deletions

View File

@@ -32,7 +32,7 @@ enum AccountOpResult
AOR_DB_INTERNAL_ERROR
};
#define MAX_ACCOUNT_STR 20
#define MAX_ACCOUNT_STR 17
#define MAX_PASS_STR 16
#define MAX_EMAIL_STR 255