The register method calls 'unique slugify' (or thereabouts) on the username, which removes periods from the username on saving to the database. A subsequent login attempt will find no user with the same username, and attempt autoregistration, but will violate a unique email constraint.
For temp use we're just passing the username through without modification, and it seems to work...
The register method calls 'unique slugify' (or thereabouts) on the username, which removes periods from the username on saving to the database. A subsequent login attempt will find no user with the same username, and attempt autoregistration, but will violate a unique email constraint.
For temp use we're just passing the username through without modification, and it seems to work...