mirror of
https://framagit.org/tom79/fedilab-tube
synced 2025-02-15 11:30:59 +01:00
Fix a register issue
This commit is contained in:
parent
b79e17cb60
commit
785b4949e6
@ -145,9 +145,11 @@ public class PeertubeRegisterActivity extends AppCompatActivity {
|
||||
return;
|
||||
}
|
||||
String[] emailArray = email.getText().toString().split("@");
|
||||
if (emailArray.length > 1 && !Arrays.asList(Helper.valideEmails).contains(emailArray[1])) {
|
||||
Toasty.error(PeertubeRegisterActivity.this, getString(R.string.email_error_domain, emailArray[1])).show();
|
||||
return;
|
||||
if (!BuildConfig.full_instances) {
|
||||
if (emailArray.length > 1 && !Arrays.asList(Helper.valideEmails).contains(emailArray[1])) {
|
||||
Toasty.error(PeertubeRegisterActivity.this, getString(R.string.email_error_domain, emailArray[1])).show();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (password.getText().toString().trim().length() < 8) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user