-
Notifications
You must be signed in to change notification settings - Fork 85
Description
The Pandora Socializer code is causing an error due to incorrect email formatting. It appears that the code expects a surname to be part of the username when constructing the email, which rarely happens in practice. This leads to invalid email addresses with two consecutive dots, such as bob..mil@mail.mil.
Example of Problematic Email:
"Email": "bob..mil@mail.mil"Root Cause:
The code that generates usernames and email addresses likely assumes a specific format, resulting in double dots in cases where the expected surname is not provided. This issue affects validation and processing of user information, particularly in cases where accurate email formatting is crucial.
Potential Fix:
Correct the logic to ensure the email address adheres to proper formatting standards and avoid generating usernames with consecutive dots. Review how usernames are being constructed to account for scenarios where a surname might not be present.
Related Components:
- Pandora Socializer Code
- Email address generation logic