mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-20 02:12:00 +01:00
Allow Revolut username to be minimum 3 characters
This commit is contained in:
parent
57adbdc367
commit
25b6685491
@ -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
|
// 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
|
// want to break validation in those cases. So being too strict on the validators might cause more troubles
|
||||||
// as its worth...
|
// 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) {
|
public ValidationResult validate(String input) {
|
||||||
|
Loading…
Reference in New Issue
Block a user