mirror of
https://github.com/wassname/talk.git
synced 2026-08-12 12:30:39 +08:00
don't use regex on existing lists
This commit is contained in:
@@ -342,7 +342,6 @@ const isValidDisplayName = (displayName) => {
|
||||
UserService.createLocalUser = (email, password, displayName) => {
|
||||
|
||||
if (!email) {
|
||||
|
||||
return Promise.reject(errors.ErrMissingEmail);
|
||||
}
|
||||
|
||||
@@ -350,7 +349,6 @@ UserService.createLocalUser = (email, password, displayName) => {
|
||||
displayName = displayName.toLowerCase().trim();
|
||||
|
||||
if (!password) {
|
||||
|
||||
return Promise.reject(errors.ErrMissingPassword);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user