mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-22 06:50:53 +08:00
Merge pull request #226 from nagisa77/codex/update-username-validation-rules
Adjust username validation and signup UI
This commit is contained in:
@@ -14,8 +14,8 @@ public class UsernameValidator {
|
||||
* @param username the username to validate
|
||||
*/
|
||||
public void validate(String username) {
|
||||
if (username == null || username.length() < 6) {
|
||||
throw new FieldException("username", "Username must be at least 6 characters long");
|
||||
if (username == null || username.isEmpty()) {
|
||||
throw new FieldException("username", "Username cannot be empty");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user