Skip to content

Commit 8afc3a6

Browse files
authored
fix(utils): generate unique username vs cyrillic
For cyrillic names on social accounts - the encode and decode operations result in replacing all chars with empty string. And later in try-except block clean_username does not raise a ValidationError, so empty string username is considered valid. As a result, "user" is returned at first iteration and other txts are not even being processed
1 parent 6f0ced9 commit 8afc3a6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

allauth/utils.py

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ def _generate_unique_username_base(txts, regex=None):
4747
continue
4848
username = unicodedata.normalize("NFKD", force_str(txt))
4949
username = username.encode("ascii", "ignore").decode("ascii")
50+
if len(username) == 0:
51+
continue
5052
username = force_str(re.sub(regex, "", username).lower())
5153
# Django allows for '@' in usernames in order to accommodate for
5254
# project wanting to use email for username. In allauth we don't

0 commit comments

Comments
 (0)