mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-20 02:12:00 +01:00
Merge pull request #5425 from BtcContributor/revolutusername
Allow Revolut username to be minimum 3 characters
This commit is contained in:
commit
568900b79d
@ -24,7 +24,8 @@ public final class RevolutValidator extends LengthValidator {
|
||||
// that the old accountID as phone number or email is displayed at the username text field and we do not
|
||||
// want to break validation in those cases. So being too strict on the validators might cause more troubles
|
||||
// as its worth...
|
||||
super(5, 100);
|
||||
// UPDATE 04/2021: Revolut usernames could be edited (3-16 characters, lowercase a-z and numbers only)
|
||||
super(3, 100);
|
||||
}
|
||||
|
||||
public ValidationResult validate(String input) {
|
||||
|
Loading…
Reference in New Issue
Block a user